Difference between revisions of "Utf8.charpos"
From GiderosMobile
Line 2: | Line 2: | ||
'''Available since:''' Gideros 2016.06<br/> | '''Available since:''' Gideros 2016.06<br/> | ||
=== Description === | === Description === | ||
− | convert UTF-8 position to byte offset. if only offset is given, return byte offset of this UTF-8 char index. if charpos and offset is given, a new charpos will calculate, by add/subtract UTF-8 char offset to current charpos. in all case, it return a new char position, and code point (a number) at this position. | + | <translate>convert UTF-8 position to byte offset. if only offset is given, return byte offset of this UTF-8 char index. if charpos and offset is given, a new charpos will calculate, by add/subtract UTF-8 char offset to current charpos. in all case, it return a new char position, and code point (a number) at this position.</translate> |
<source lang="lua"> | <source lang="lua"> | ||
(number) = utf8.charpos(s,charpos,offset) | (number) = utf8.charpos(s,charpos,offset) | ||
</source> | </source> | ||
=== Parameters === | === Parameters === | ||
− | '''s''': (string) | + | '''s''': (string) <translate></translate> <br/> |
− | '''charpos''': (number) | + | '''charpos''': (number) <translate></translate> '''optional'''<br/> |
− | '''offset''': (number) | + | '''offset''': (number) <translate></translate> '''optional'''<br/> |
=== Return values === | === Return values === | ||
− | '''Returns''' (number) return byte offset of this UTF-8 char index<br/> | + | '''Returns''' (number) <translate>return byte offset of this UTF-8 char index</translate><br/> |
Revision as of 13:33, 23 August 2018
Available since: Gideros 2016.06
Description
convert UTF-8 position to byte offset. if only offset is given, return byte offset of this UTF-8 char index. if charpos and offset is given, a new charpos will calculate, by add/subtract UTF-8 char offset to current charpos. in all case, it return a new char position, and code point (a number) at this position.
(number) = utf8.charpos(s,charpos,offset)
Parameters
s: (string)
charpos: (number) optional
offset: (number) optional
Return values
Returns (number) return byte offset of this UTF-8 char index