Sunidhi Bansal has Published 1100 Articles

match_results prefix() and suffix() in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 23-Mar-2020 06:46:56

658 Views

In this article we will be discussing the working, syntax and examples of match_results::prefix() and match_results::suffix() functions in C++ STL.What is a match_results in C++ STL?std::match_results is a specialized container-like class which is used to hold the collection of character sequences which are matched. In this container class a regex ... Read More

match_results operator[] in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 23-Mar-2020 06:43:33

192 Views

In this article we will be discussing the working, syntax and examples of match_results operator ‘[ ]’ in C++ STL.What is a match_results in C++ STL?std::match_results is a specialized container-like class which is used to hold the collection of character sequences which are matched. In this container class a regex ... Read More

match_results operator= in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 23-Mar-2020 06:39:13

79 Views

In this article we will be discussing the working, syntax and examples of match_results operator ‘=’ in C++ STL.What is a match_results in C++ STL?std::match_results is a specialized container-like class which is used to hold the collection of character sequences which are matched. In this container class a regex match ... Read More

match_results length() in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 23-Mar-2020 06:33:53

61 Views

In this article we will be discussing the working, syntax and examples of match_results::length() function in C++ STL.What is a match_results in C++ STL?std::match_results is a specialized container-like class which is used to hold the collection of character sequences which are matched. In this container class a regex match operation ... Read More

match_results empty() in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 23-Mar-2020 06:30:24

58 Views

In this article we will be discussing the working, syntax and examples of match_results::empty() function in C++ STL.What is a match_results in C++ STL?std::match_results is a specialized container-like class which is used to hold the collection of character sequences which are matched. In this container class a regex match operation ... Read More

match_results cbegin() add cend() in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 23-Mar-2020 06:27:51

56 Views

In this article we will be discussing the working, syntax and examples of match_results::cbegin() and match_results::cend() functions in C++ STL.What is a match_results in C++ STL?std::match_results is a specialized container-like class which is used to hold the collection of character sequences which are matched. In this container class a regex ... Read More

match_results begin() and end() function in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 23-Mar-2020 06:23:48

55 Views

In this article we will be discussing the working, syntax and examples of match_results::begin() and match_results::end() functions in C++ STL.What is a match_results in C++ STL?std::match_results is a specialized container-like class which is used to hold the collection of character sequences which are matched. In this container class a regex ... Read More

is_standard_layout template in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 23-Mar-2020 06:14:26

177 Views

In this article we will be discussing the working, syntax and examples of std::is_standard_layout template in C++ STL.is_standard_layout is a template which comes under the header file. This template is used to check whether the given type T is a standard layout or not.What is a standard layout in ... Read More

Data types ranges and their macros in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 23-Mar-2020 06:02:50

158 Views

Given the task is to find the memory range of the different data types, that what range of value a data type can store the value from minimum value to maximum value. There is memory range of data type from in which value of data can be stored. It is ... Read More

tanh( ) function for complex Number in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 23-Mar-2020 05:56:53

115 Views

In this article we will be discussing the working, syntax and examples of tanh() function for a complex number in C++ STL.tanh() for complex number is a function which comes under header file. This function is used to find the hyperbolic tangent of a complex number. This is the ... Read More

Advertisements