Where is the regex header link on MSDN?

I can include this file right now without tr1 in VS 2010, but I cannot find a description of this file anywhere on MSDN. Where is the regex header link in MSDN?

+3
source share
2 answers

Description of regular expressions in 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

+2
source
+1

Source: https://habr.com/ru/post/1755574/


All Articles