I am trying with simple split which not working
variableText is type String
SplitVariable is type String
variableText = “01030507”
SplitVariable = variableText.Split()
When i output SplitVariable(0) it gives me 01
But when i output SplitVariable(1) I get error index was outside the bounds of the array
can someone help…