I have a string of text that I am trying to break into pieces in Loadrunner Here are two possible combinations of text
309-95-90570-0243-023-0030
222-627-90570-0365-042-0031
I need to be able to break each section that is inside of the "-
" into separate variables.
For Example the variables need to be
First Variable - 309
from the first set and 222
from the second set
It gets tricky here for the second variable bc in the first example it contains two characters where in the second example it contains three characters.
Second Variable - 95
from the first set and 627
from the second set
Third Variable - 90570
from the first set and 90570
from the second set
Does anyone know how I would accomplish this?