hello guys i need i new in uipath
i have a string SOLON, OH 44139
i want to convert this string in SOLON,OH,44139
how can i do ??
pls help
Hi @arjun27.
You could just replace blank characters into commas like this:
myString = myString.Replace(string.Empty, ",");
there is comma in the start ??? how can i handle that
thanks
arjun
You may remove it later:
myString = myString.Replace(string.Empty, ",").Replace(",,", ",");
1 Like
Thanks @acaciomelo for the help it work for me
appreciate for the help
1 Like