of     1   

filiptibell
#141269283Wednesday, July 23, 2014 1:16 PM GMT

Lets say I have this string: "Foo Bar" How would I get anything up until the whitespace? With that I mean, how would I get the string "Foo", with no whitespace after it? ~The herp lerped a derp~
nomer888
#141270403Wednesday, July 23, 2014 1:33 PM GMT

If you want a separator to separate a string: function separate(str, separator) separator = tostring(separator) --just in case you're using a number as a separator local catches = {} for i in str:gmatch(string.format("[^%s]+", "%"..separator)) do table.insert(catches, i) end return catches end print(unpack(separate("1 2 3", " "))) -> 1 2 3 Otherwise, if you don't want to capture all of the non-whitespace characters: print(string.match("Foo Bar", "%S+")) -> Foo
filiptibell
#141273010Wednesday, July 23, 2014 2:11 PM GMT

Thanks, that worked! :) ~The herp lerped a derp~

    of     1