Split a variable longer than 20 characters

Hello,

I have a variable that is longer than 20 characters and I need to grab everything that is after the 20th character.

Ex: 01234567890123456789Abacdr
I need to grab Abacdr
Also, I just put the letters after the numbers so it’s easy to see the characters after the 20th character.

Any ideas?

Thank you!

Hi @icosinga

You can use sub string to split the string based on the index.

Str.SubString(20)

This will split from 20th index to the last of the string…

Let me know whether this helps…

3 Likes

Hi @icosinga

You can also check this out .

cheers :smiley:

Happy learning :smiley:

4 Likes

It works GREAT!
Thank you!!!

2 Likes

Thank you!!!

@icosinga

Glad to hear that I was able to help. If any of the answers helped you to fix it, please also mark the appropriate answer as the solution too… It could help others seeking for the same solution :smiley:

Thank you!!

Happy automating!!!

1 Like

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