String Library🔗
The string
library is a standard Lua library that provides a functions for
string manipulation.
Original functions have non-capitalized names, e.g: string.len
, while our
additional functions have UpperCamelCase names, e.g: string.TrimEnd
.
Read more on the standard Lua debug library in the Lua PIL or in the Lua 5.4 Reference Manual.