Hello,
I've read this manual https://www.scirra.com/manual/126/system-expressions
and search the meaning of len, but i still didnt get the meaning of.
it says like this,
[quote:3k045uym]len(text)
Return the number of characters in text.
Could anyone describe it to me, please?
Thanks very much <img src="{SMILIES_PATH}/icon_mrgreen.gif" alt=":mrgreen:" title="Mr. Green">
Hard to explain further. It counts the number of individual characters, e.g.
Different example using a variable to RamPackWobble.
If you had a variable called 'howmany' that had a text string of "countme", then
len(howmany) would return 7
[/code:3k045uym]