Difference between revisions of "Utf8.codepoint"
From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2016.06<br/> === Description === Returns the codepoints (as integers) from all characters in s that start between byte position i and...") |
|||
(8 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
'''Available since:''' Gideros 2016.06<br/> | '''Available since:''' Gideros 2016.06<br/> | ||
+ | '''Class:''' [[utf8]]<br/> | ||
+ | |||
=== Description === | === Description === | ||
− | Returns the codepoints (as integers) from all characters in s that start between byte position i and j (both included). The default for i is 1 and for j is i. It raises an error if it meets any invalid byte sequence. | + | Returns the codepoints (as integers) from all characters in ''s'' that start between byte position ''i'' and ''j'' (both included). |
− | + | <syntaxhighlight lang="lua"> | |
− | + | (numbers) = utf8.codepoint(s,i,j) | |
− | + | </syntaxhighlight> | |
− | '''s | + | |
− | '''i | + | The default for i is 1 and for j is i. It raises an error if it meets any invalid byte sequence. |
− | '''j | + | |
− | '''Returns''' (numbers) | + | === Parameters === |
+ | '''s''': (string) <br/> | ||
+ | '''i''': (number) '''optional'''<br/> | ||
+ | '''j''': (number) '''optional'''<br/> | ||
+ | |||
+ | === Return values === | ||
+ | '''Returns''' (numbers) the codepoints (as integers) from all characters in s<br/> | ||
+ | |||
+ | {{Utf8}} |
Latest revision as of 21:34, 1 December 2023
Available since: Gideros 2016.06
Class: utf8
Description
Returns the codepoints (as integers) from all characters in s that start between byte position i and j (both included).
(numbers) = utf8.codepoint(s,i,j)
The default for i is 1 and for j is i. It raises an error if it meets any invalid byte sequence.
Parameters
s: (string)
i: (number) optional
j: (number) optional
Return values
Returns (numbers) the codepoints (as integers) from all characters in s