I can include this file directly now without tr1 in VS 2010 but can't find description of this file anywhere on MSDN. Where is a reference to regex header on MSDN?
A:
You shouldn't need any specific headers beyond <regex>
to include the tr1 functionality. To get start using Regular Expressions in tr1 I suggest reading: http://www.johndcook.com/cpp_regex.html
Oren
2010-07-20 17:37:48
But I do not want to include anything else. I only want to read about this header on MSDN.
There is nothing we can do
2010-07-20 17:45:55
Then I think you're looking for: http://msdn.microsoft.com/en-us/library/bb982382.aspx(which is also mentioned above)
Oren
2010-07-20 18:22:00
+1
A:
The regex description on MSDN:
http://msdn.microsoft.com/en-us/library/bb982382.aspx
Basically, you create "basic_regex" objects, then call the "regex_match" or "regex_replace" functions
Tomaka17
2010-07-20 17:55:53