Hello, How to split string

Hello Guy’s
I have strings like below

Str1 = 4223 Tory Jackson 123A4567890
Str2 = 6900 Kevin White 680G6B35235

I wanted output like “123A4567890” & “680G6B35235”
Can u plz let me know how to achieve this?

Thank’s

1 Like

Hey @Bot_Learner

Just try this,

Str1.Split(" "c).Last

Hope this helps

Thanks
#nK

2 Likes

@Nithinkrishna …Thanks

1 Like

Cool @Bot_Learner :slightly_smiling_face::+1:

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