/
Trimming white space
Trimming white space
Try this code in the Translator:
local Life = " This is life ";
Life = Life:trimWS()
You’ll see something like this:
The function trims white space from either side of the string. It’s important to know that stripped string is returned - Lua strings are ‘immutable’. Once created they cannot be altered - you can point a variable at a new string.
, multiple selections available,
Related content
String:split()
String:split()
Read with this
Lua Strings
Lua Strings
More like this
String:gsub()
String:gsub()
More like this
String:match()
String:match()
More like this
String:sub()
String:sub()
Read with this
String:find()
String:find()
More like this