I want to replace all occurences of the character . in all strings in a solution
These strings look like this:
string sentence = "Hello world. Good bye world";
And I want them all to look like this:
string sentence = "Hello world_ Good bye world";
I want to do it with a regular Expression. I tried with similar approaches as the described here: Regular expression to extract text between square brackets and I read the documentation here https://learn.microsoft.com/en-us/visualstudio/ide/using-regular-expressions-in-visual-studio but I can't figure out how I can continue.
Edit: I am using Visual Studio 2017