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

Invert gmlscripts.pro

string_parse

string_parse(str,token,ignore)
Returns a ds_list containing all substring elements within a given string which are separated by a given token.
COPY
  1. /// string_parse(str,token,ignore)
  2. //
  3. // Returns a ds_list containing all substring elements within
  4. // a given string which are separated by a given token.
  5. //
  6. // eg. string_parse("cat|dog|house|bee", "|", true)
  7. // returns a ds_list { "cat", "dog", "house", "bee" }
  8. //
  9. // str elements, string
  10. // token element separator, string
  11. // ignore ignore empty substrings, bool
  12. //
  13. /// gmlscripts.pro/license
  14. {
  15. var str,token,ignore,list,tlen,temp;
  16. str = argument0;
  17. token = argument1;
  18. ignore = argument2;
  19. list = ds_list_create();
  20. tlen = string_length( token);
  21. while (string_length(str) != 0) {
  22. temp = string_pos(token,str);
  23. if (temp) {
  24. if (temp != 1 || !ignore) ds_list_add(list,string_copy(str,1,temp-1));
  25. str = string_copy(str,temp+tlen,string_length(str));
  26. } else {
  27. ds_list_add(list,str);
  28. str = "";
  29. }
  30. }
  31. return list;
  32. }

Contributors: EyeGuy

GitHub: View · Commits · Blame · Raw