How would perform Pattern Matching in C++?



How would perform Pattern Matching in C++?..

Answer / Prakhar Narain

Pattern matching can be achieved in C++ using Regular Expressions, a part of the Standard Template Library (STL). Boost library also provides powerful pattern-matching capabilities.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

How can you specify a class in C++?

1 Answers  


how to find the maximum of 10 numbers ?

5 Answers  


let a,b,c be three integer numbers.write a c++ program with a function void rotate 1()such that a->b->c and c->a.

1 Answers  


What is the default access level?

1 Answers  


What are function poinetrs? where are they used?

1 Answers   CTS,


What is a block in c++?

1 Answers  


Can you overload the operator+ for short integers?

1 Answers  


What is the type of 'this' pointer? When does it get created?

1 Answers  


What are its advantages and disadvantages of multiple inheritances (virtual inheritance)?

1 Answers  


Write some differences between an external iterator and an internal iterator?

1 Answers  


Is python written in c or c++?

1 Answers  


What is the difference in size of this two clasees? Class A { int a; char c; float f; } Class B { float f; char c; int a; }

4 Answers  


Categories