Dear all,
I have a string with differing number of spaces for different rows. How do i get rid of the spaces?
Thanks!
Dear all,
I have a string with differing number of spaces for different rows. How do i get rid of the spaces?
Thanks!
a="This is forum uipath"
assign a = Regex.Replace( a," {2,}", " ")
Or use,
string = string.replace(/\s\s+/g, ’ ')
Regex.Replace(YourStringvariable, " ", string.Empty) @avene