I'm trying to figure out how to replace some text in this string:
'some text blah blah XII'
I need to replace the Roman Numerals with an empty string, resulting in:
'some text blah blah'
I have the following regex which correctly matches a Roman Numeral.
string p1 = "^m*(d?c{0,3}|c[dm])"+ "(l?x{0,3}|x[lc])(v?i{0,3}|i[vx])$";
How do I replace the matches with an empty string?
UPDATE
i tried like this and it doesn't work
string algo = Regex.Replace("some text blah blah XII", "\bm*(d?c{0,3}|c[dm])(l?x{0,3}|x[lc])(v?i{0,3}|i[vx])\b"," ");