Substring/Top and tail: Difference between revisions

Use the same language as substring to exempt non-Unicode encodings.
(→‎{{header|AutoHotkey}}: AutoHotkey example added)
(Use the same language as substring to exempt non-Unicode encodings.)
Line 6:
* String with both the first and last characters removed
 
AnswersIf shouldthe program uses UTF-8 or UTF-16, it must work on any valid Unicode code point, whether in the Basic Multilingual Plane or above it. The program dealmust withreference logical characters (code points) only, not with 8-bit code units infor UTF-8 or 16-bit code units infor UTF-16. ThePrograms samefor codeother shouldencodings work(such foras code8-bit pointsASCII, inor theEUC-JP) 0–0xFFFFare rangenot asrequired into thehandle 0x1000–0x1FFFFFall rangeUnicode characters.
 
=={{header|Ada}}==
Anonymous user