I have a string:
"Hello 7866592 this is my 12432 string and 823 i need to flip all 123"
And i want to to be
"Hello 2956687 this is my 23421 string and 328 i need to flip all 321"
I use this regular expression to get all numbers:
Regex nums = new Regex("\d+");