Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Any idea why the following code prints "no match"? Something related with the compiler or the version of the library? I compiled with g++ a.cpp.

#include <tr1/regex>
#include <iostream>
#include <string>

using namespace std;

int main()
{
   const std::tr1::regex pattern("(\\w+day)");

   std::string weekend = "Saturday and Sunday";

   std::tr1::smatch result;

   bool match = std::tr1::regex_search(weekend, result, pattern);

   if(match)
   {
      for(size_t i = 1; i < result.size(); ++i)
      {
         std::cout << result[i] << std::endl;
      }
   }else
    std::cout << "no match" << std::endl;

   return 0;
}
share|improve this question
+1 for a short complete testcase. – Robᵩ Apr 9 '12 at 19:07
the code is so obvious that I am suspecting incomplete support of the compiler (at least at my version) towards the standard. How can I verify this? – cateof Apr 9 '12 at 19:12
Just for reference - MSVC 2010 SP1 (16.00.40219.01) compiles and finds the match properly. You did not specify the version of GCC you are using. – DCoder Apr 9 '12 at 19:48
In g++ 4.6.1, and g++ 4.3.4, this statement asserts: assert( std::tr1::regex_search("a", std::tr1::regex("a")) ); – Robᵩ Apr 9 '12 at 20:07

2 Answers

up vote 0 down vote accepted

Definitely an issue with your compiler. I would recommend (since you're on Linux and that makes it particularly easy) to simply swap out <tr1/regex> for <boost/regex.hpp>. The namespace also becomes boost:: instead of std::tr1:: but all other syntax is exactly the same and it may solve all your problems.

If you can't use boost, that's a whole different story; but as of the past year or so, most people/employers/companies have been much more boost-friendly.

Also note that your test case is flawed. You have a loop, but it'll only ever print a single value. regex_search returns a value at a time, you need to keep calling it with the new search start index to get all results. If you said the output of the program was nothing (vs "no match"), then I would say the bug was in your code. But the code as it is currently written should return "Saturday" or "".

share|improve this answer

Have you tried escaping the (). In some regexp implementations you must use \( for grouping. And anyways you probably don't need it.

The most basic regexp for this would be:

"[a-zA-Z]+day"

And you would get the results by result[0]

share|improve this answer
still "no match". Looks a compiler prob – cateof Apr 9 '12 at 19:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.