String length: Difference between revisions

Line 3,605:
{{works with|HyperCard}}{{works with|LiveCode}}
===Char Length===
<lang xtalk>put the length of "Hello World" -- older Xtalk languages like HyperCard's HyperTalk do not support non-ASCII characters without an external add-on </lang>
or
<lang xtalk>put the number of characters in "Hello World" -- 'chars' short for characters is also valid</lang>
Line 3,611:
===Byte Length===
<lang LiveCode>put the number of bytes in "Hello World" -- use byte keyword in LiveCode for multi-byte Unicode</lang>
 
===Character Length===
{{needs-review|xTalk}}
<lang xtalk>put the length of "Hello World"</lang>
 
or
 
<lang xtalk>put the number of characters in "Hello World"</lang>
 
=={{header|Yorick}}==