Difference between revisions of "Utf8.codes"
From GiderosMobile
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
'''<translate>Available since</translate>:''' Gideros 2016.06<br/> | '''<translate>Available since</translate>:''' Gideros 2016.06<br/> | ||
+ | '''<translate>Class</translate>:''' [[Special:MyLanguage/utf8|utf8]]<br/> | ||
=== <translate>Description</translate> === | === <translate>Description</translate> === | ||
<translate>Returns values so that the construction | <translate>Returns values so that the construction |
Revision as of 09:30, 24 August 2018
Available since: Gideros 2016.06
Class: utf8
Description
Returns values so that the construction for p, c in utf8.codes(s) do body end will iterate over all characters in string s, with p being the position (in bytes) and c the code point of each character. It raises an error if it meets any invalid byte sequence.
(iterator) = utf8.codes(s)
Parameters
s: (string)
Return values
Returns (iterator) iterator