// string_reverse(string) // Reverses the characters in a string var len, reverse, c; len = string_length(argument0); reverse = ""; for (c=1; c<=len; c+=1) reverse += string_char_at(argument0,len+1-c); return reverse;
Categories: String handling
There are no comments to display.
You must be signed in to post comments.