Remove tabs from output Data Table String

Hello everyone,

I have a SAP output data table. I have not been able to delete the header and its tab, I already deleted the tab at the end of the String with
str_imp = importe.Trim.Split(vbtab.ToCharArray)

image

but, as you can see, i need to delete “Importe\r\n” to obtain 633.

PS: I don’t want regex or excel manipulation please.

Hi @snapval
Welcome to uipath community
Inputstring.split(“/n”)(1)

1 Like

Hi,

Can you try the following expression?

importe.Split(vbCrLf.ToCharArray,StringSplitOptions.RemoveEmptyEntries)(1)

Regards,

It worked, thank you!

1 Like

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