str1 = Invoice Reference Number: 111, 222, 333, 444
I need to get all the numeric data and set it in the variables .
(variables will have the value of the trimmed numbers).
var1 = 111
var2 = 222
var3 = 333
var4 = 444
kindly take note that number of variables may depend on the numbers in the string.
given above, code sets 4 variables(var1, var2, var3 & var4) because there is 4 combination of numbers.
how to do this in code? is it possible to declare variables on looping?
any help is greatly appreciated.