My regex_replace expression uses group $1 right before a '0' character in the replacement string like so:
#include <iostream>
#include <string>
#include <regex>
using namespace std;
int main() {
regex regex_a( "(.*)bar(.*)" );
cout << regex_replace( "foobar0x1", regex_a, "$10xNUM" ) << endl;
cout << regex_replace( "foobar0x1", regex_a, "$1 0xNUM" ) << endl;
}
The output is:
xNUM
foo 0xNUM
I'm trying to get output foo0xNUM
without the middle whitespace.
How do I guard the group name $1 from the next character in the substitution string?
You are allowed to either specify $n
or $nn
to reference captured text, thus you can use the $nn
format (here $01
) to avoid grabbing the 0
.
cout << regex_replace( "foobar0x1", regex_a, "$010xNUM" ) << endl;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With