You are currently viewing the gmlscripts.pro static mirror. Forum access and script submissions are not available through this mirror.

Invert gmlscripts.pro

string_rtrim

string_rtrim(str)
Returns the given string with whitespace stripped from its end.
COPY
  1. /// string_rtrim(str)
  2. //
  3. // Returns the given string with whitespace stripped from its end.
  4. // Whitespace is defined as SPACE, HT, LF, VT, FF, CR.
  5. //
  6. // str string of text, string
  7. //
  8. /// gmlscripts.pro/license
  9. {
  10. var str,r,o;
  11. str = argument0;
  12. r = string_length(str);
  13. repeat (r) {
  14. o = ord(string_char_at(str,r));
  15. if ((o > 8) && (o < 14) || (o == 32)) r -= 1;
  16. else break;
  17. }
  18. return string_copy(str,1,r);
  19. }

Contributors: xot

GitHub: View · Commits · Blame · Raw