Hi Guys - I am trying to split an ID : XX_123456 and use either side as stored variables for later use.
I have found great info on how to separate but after that I want to store both as different variables and use them in the process after, which is proving very hard to find the answer to.
I am able to store the “XX” part very easily using XX.ToString.Substring(0,2)
But I want the numbers after as a separate ID.
I have used Test.Split("_"c) in a for each etc which is fine but I can’t seem to store the number separately afterwards. Storing as an array etc but I just want the number as a string.