Regular expressions: Difference between revisions

m
→‎{{header|C++}}: ww nl; lang tag
m (→‎{{header|Perl}}: formatting)
m (→‎{{header|C++}}: ww nl; lang tag)
Line 147:
=={{header|C++}}==
{{works with|g++|4.0.2}}
 
{{libheader|Boost}}
<lang cpp> #include <iostream>
#include <string>
#include <iterator>
Line 186 ⟶ 187:
"'m now a changed");
std::cout << dest_string << std::endl;
}</lang>
 
=={{header|C sharp|C#}}==