Is std::regex
and std::tr1::regex
totally compatible?
The former is available since C++11.
I want to migrate to std::regex
.
I use MSVC 2012/2013.
Is std::regex
and std::tr1::regex
totally compatible?
The former is available since C++11.
I want to migrate to std::regex
.
I use MSVC 2012/2013.
As far as I know, this is the same module, it was just moved from tr1
to std
.