|
|
Returns a string with backslashes before characters that need to be escaped(`\",\a,\b,\t,\n,\v,\f,\r,\\,\",\',\0,\xnn`).
|
|
Returns a string with backslashes before characters that need to be escaped(`\",\a,\b,\t,\n,\v,\f,\r,\\,\",\',\0,\xnn`).
|
|
|
local a = split("1.2-3;4/5",".-/;");
|
|
local a = split("1.2-3;4/5",".-/;");
|
|
|
// the result will be [1,2,3,4,5]
|
|
// the result will be [1,2,3,4,5]
|