There is a function to use pattern matching (using regular expressions) in C++?

前端 未结 4 509
说谎
说谎 2020-12-21 15:02

There is a simple C++ method to use pattern matching on strings? The code should sound like this:

if (regexpcmp(\"l?nole*[0-9]\", \"linoleum1\")) {
  //we ha         


        
4条回答
  •  伪装坚强ぢ
    2020-12-21 15:32

    A standard regex library (that is based on boost::regex) is available in the TR1 namespace if you use lasts versions of the most used compilers : std::tr1::regex.

提交回复
热议问题