An example of performing regex match and regex replace with std::wstring and std::u32string.
#include <iostream>
#if __cplusplus >= 201103L
#endif
int main() {
std::cout<<"\n"<<
std::wcout<<"\n"<<
#if __cplusplus >= 201103L
std::cout<<"\n"<<
std::wcout<<L"\n"<<std::wstring(us.begin(), us.end());
#endif
return 0;
}
- Author
- Md Jahidul Hamid