Header,slip



I read the mail
This is how I separated the code in each line to search the web separately
here is the output:
Array(0).toString = 1st item
Array(1).toString= empty
Array(2).toString = 2nd item
how do i remove spaces

HI @Yurdanur_Yusuf

You can try with Trim

ex : Array(1).toString.Trim

Regards
Gokul

1 Like

For Reference @Yurdanur_Yusuf

Regards
Gokul

1 Like

Hello @Yurdanur_Yusuf ,

Please use StringSplitOptions.RemoveEmptyEntries like this:

image

Hope it helps!
Best regards,
Marius

1 Like

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