We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Home > [Scripting Reference](Scripting Reference) > string.explode
The string.explode function returns an array of strings, each of which is a substring of s formed by splitting on boundaries formed by pattern.
#!lua string.explode("str", "pattern")
str is the string to be split. pattern is the separator pattern at which to split; it may use Lua's pattern matching syntax.
A list of substrings.
There was an error while loading. Please reload this page.