Remove TAB character from String

Hi,
I have string variable which contains TAB characters in text… I want to remove those TAB characters from String variable.

Can you please help me how?
Thanks.

@Nenad_Mijailovic Welcome to uipath community

       Assign str = uipathTAB

       Assign str = System.Text.RegularExpressions.Regex.Replace(str, “TAB”, “”).ToString

Hi Nenad,

You can also use the .Replace method and call the vb.net tab character “vbTab”.

For example, you can write in an assign:

stringvar.Replace(vbTab,“”)

Where stringvar is the name of the variable you are using to store that string variable, which will replace all the tabs with nothing. If you want to replace them with spaces, the expression would be:

stringvar.Replace(vbTab," ")

Hope this helps,

7 Likes

You can use regex for this. \s or \cI

Thanks! I used this solution and it works OK.

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.