Jump to content

String length: Difference between revisions

Line 3,604:
=={{header|xTalk}}==
{{works with|HyperCard}}{{works with|LiveCode}}
===ByteChar Length===
<lang xtalk>put the length of "Hello World" -- older Xtalk languages like HyperCard HyperTalk do not support non-ASCII characters without an external add-on </lang>
{{needs-review|xTalk}}
<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>
 
===Byte Length===
<lang xtalk>put the number of characters in "Hello World" -- 'chars' short for characters is also valid</lang>
<lang LiveCode>put the number of bytes in "Hello World" -- use byte keyword asin LiveCode supportsfor multi-byte Unicode characters</lang>
 
===Character Length===
Cookies help us deliver our services. By using our services, you agree to our use of cookies.