Is there any function in vb.net that removes all spaces in a string. I mean a string like \' What is this\' should be \'Whatisthis\'
Thanks Furqan
I have used str=str.Replace(" ","") with great success.
str=str.Replace(" ","")
However, str=str.Replace(" ","") has not worked for me in the past.
str=str.Replace(" ","")