Are there any built-in string manipulation functions like:
- String to array
- Array to String
- Substring replacement
- Remove whitespace before and after string.
- etc.
At the moment, this is the code I made for my
String to Array. I'm getting the values backwards, but the order don't matter for my project.
inp$ = "1,2,3,4,5,6,7,8,9,10" // Input String
ar as integer[] // Output Array
count = CountStringTokens(inp$, ",")
repeat
temp = val(GetStringToken(inp$, ",", count))
ar.insert(temp)
count = count - 1
until count <= 0