Split Function gives strange results
The result of
Dim strSource = "-1.4985018|52.4053273|1983688820|node"
Dim strDivisor = "|"
Dim result As List
result.Initialize
Dim sf As StringFunctions
result = sf.Split(strSource, strDivisor)
Log (result)
is
(ArrayList) [, -, 1, ., 4, 9, 8, 5, 0, 1, 8, |, 5, 2, ., 4, 0, 5, 3, 2, 7, 3, |, 1, 9, 8, 3, 6, 8, 8, 8, 2, 0, |, n, o, d, e]
whereas I would have expected
(ArrayList) [-1.4985018, 52.4053273, 1983688820, node]
Has anyone tested all the other functions?