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
Use String.Replace()
Dim s As String = " What is this" s = s.Replace(" ", "")