You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AM2R-The-Horde-Multitroid/Export_Code/gml_Script_string_split.gml

17 lines
340 B

var num, newVal, sepNum, delemiter;
num = argument1
newVal = ""
sepNum = 0
delemiter = argument2
for (i = 1; i < (string_length(argument0) + 1); i += 1)
{
if (string_char_at(argument0, i) == delemiter)
{
sepNum += 1
i += 1
}
if (sepNum == num)
newVal += string_char_at(argument0, i)
}
return newVal;