Difference between revisions of "Utf8.byte"
From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2016.06<br/> === Description === Returns the internal numerical codes of the characters s[i], s[i+1], ..., s[j]. The default value for...") |
|||
(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 internal numerical codes of the characters s[i], s[i+1], ..., s[j]. The default value for i is 1; the default value for j is i. These indices are corrected following the same rules of function string.sub. | + | Returns the internal numerical codes of the characters s[i], s[i+1], ..., s[j]. |
+ | <syntaxhighlight lang="lua"> | ||
+ | (numbers) = utf8.byte(s,i,j) | ||
+ | </syntaxhighlight> | ||
+ | |||
+ | The default value for i is 1; the default value for j is i. These indices are corrected following the same rules of function string.sub. | ||
+ | |||
Numerical codes are not necessarily portable across platforms. | Numerical codes are not necessarily portable across platforms. | ||
− | + | ||
− | + | === Parameters === | |
− | + | '''s''': (string) string<br/> | |
− | '''s | + | '''i''': (number) default is 1 '''optional'''<br/> |
− | '''i | + | '''j''': (number) '''optional'''<br/> |
− | '''j | + | |
− | '''Returns''' (numbers) | + | === Return values === |
+ | '''Returns''' (numbers) returns the internal numerical codes of the characters<br/> | ||
+ | |||
+ | {{Utf8}} |
Latest revision as of 21:26, 1 December 2023
Available since: Gideros 2016.06
Class: utf8
Description
Returns the internal numerical codes of the characters s[i], s[i+1], ..., s[j].
(numbers) = utf8.byte(s,i,j)
The default value for i is 1; the default value for j is i. These indices are corrected following the same rules of function string.sub.
Numerical codes are not necessarily portable across platforms.
Parameters
s: (string) string
i: (number) default is 1 optional
j: (number) optional
Return values
Returns (numbers) returns the internal numerical codes of the characters