Difference between revisions of "Utf8.codes"

From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2016.06<br/> === Description === Returns values so that the construction for p, c in utf8.codes(s) do body end will iterate over all c...")
(No difference)

Revision as of 11:04, 23 August 2018

Available since: Gideros 2016.06

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,)

's: (string) '
Returns (iterator) iterator