Code: Select all
ex: "5489->12->59->15663" this will have the split operator "->" and the output will be an array of
{
5489
12
59
15663
}
Code: Select all
ex: "5489->12;59->15663" this will have the split operators ";" and "->" and the output will be an array of
{
{
5489
12
}
{
59
15663
}
}