|
|
Browse by Tags
All Tags » C# » matching specific instances of a string
-
Hello!
I have a problem writing an expression where I want to match all characters with an accent. I will have a text where the character é (or á) will appear and I just want to find this character or any character with an accent. I have tried all sorts of combinations with \P{Mn} but I don't get it to work.
If I write an ...
-
Hi
I have a formulam represented like a string: @X1 + @Y2/ @X + @Y, where @xxx are variables which are replaced with a numeric value.
Question 1:
Instead of myFormular.Replace("@X", "1234") I want to use a RegEx pattern to make sure that @X1 is not replaced when searching for @X. How do I ...
|
|
|