Hi All, I am reading some string from html file the string is appearing as 2x2 s. I understand that this contain non breaking space . But after reading them in C#app . How do i check if string conatin   or not. I had tried couple of way but thedy didn't worked. Any idea?
if(strText.Contains(@"\\u00A0")) strText = Regex.Replace(strText, @"\u00A0", " ");
Thanks
Rupesh Shukla