take your value and split it into an arrayuse len to find out how many
numbers are in your valueLen(s1) Returns the number of characters in a
given string. String.length then using a little math split it usingLeft
and RightLeft(s1, n1) Extracts a specified number of characters from a
string, starting with the first character on the left.
String.substring(n1, n2) Right(s1, n1) Extracts several characters from
a given string, beginning with the last character on the right.
String.substring(n1, n2)...