String:Trim(text, return)
Removes trailing spaces in text.
None.
function main() { Var:String myStr = " Hello "; String:Trim(myStr, myStr) Konsol:Log(myStr) //see the log for "Hello" }