If I want to read the 32 letter of a string, how do I. I'd be using expressions. My app generates random text and random amounts. I need to be able to read a specific letter in that random text.
Develop games in your browser. Powerful, performant & highly capable.
Use text expressions: mid(), left(), right(), len(), etc.
For example, mid(string, 5, 1) returns the 6th character from the string.
Thank you, it works now.