P
Paul Cowan
Hi all,
I am trying to remove all carriage returns from a long string.
I have the following code
//use a regular expression to remove all carriage returns
Regex regex = new Regex("\r");
regex.Replace(decodedString, "");
It is not working,
does anyone know why??
Thanks
Paul
I am trying to remove all carriage returns from a long string.
I have the following code
//use a regular expression to remove all carriage returns
Regex regex = new Regex("\r");
regex.Replace(decodedString, "");
It is not working,
does anyone know why??
Thanks
Paul