String length: Difference between revisions

Line 3,623:
{{works with|HyperCard}}{{works with|LiveCode}}
===Char Length===
<langNote: xtalk>put the length of "Hello World" --That older Xtalk languages likesuch as HyperCard's HyperTalk dodid not support non-ASCII characters without an external add-on </lang>natively.
LiveCode fully supports multi-byte Unicode characters since version 7. See the LiveCode section for more information.
 
<lang xtalk>put the length of "Hello World" </lang>
or
<lang xtalk>put the number of characters in "Hello World" -- 'chars' short for characters is also valid</lang>