We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Usage chop('this string into a list')
chop('this string into a list')
Turns a string into a list/array (e.g. chop('test') outputs ['t','e','s','t'])
chop('test')
['t','e','s','t']
Usage: listToString(['h','i'])
listToString(['h','i'])
Turns a list/array into a string
Usage: string(1)
string(1)
Exactly the same as str()
str()