Difference between revisions of "Utf8.charpattern"
From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2016.06<br/> '''Value:''' [\0-\x7F\xC2-\xF4][\x80-\xBF]*<br/> === Description === <translate>The pattern (a string, not a function) "[...") |
|||
| (4 intermediate revisions by 2 users not shown) | |||
| Line 2: | Line 2: | ||
'''Available since:''' Gideros 2016.06<br/> | '''Available since:''' Gideros 2016.06<br/> | ||
'''Value:''' [\0-\x7F\xC2-\xF4][\x80-\xBF]*<br/> | '''Value:''' [\0-\x7F\xC2-\xF4][\x80-\xBF]*<br/> | ||
| + | '''Defined by:''' [[utf8]]<br/> | ||
| + | |||
=== Description === | === Description === | ||
| − | + | The pattern (a string, not a function) "[\0-\x7F\xC2-\xF4][\x80-\xBF]*", which matches exactly one UTF-8 byte sequence, assuming that the subject is a valid UTF-8 string. | |
| + | |||
| + | {{Utf8}} | ||
Latest revision as of 21:29, 1 December 2023
Available since: Gideros 2016.06
Value: [\0-\x7F\xC2-\xF4][\x80-\xBF]*
Defined by: utf8
Description
The pattern (a string, not a function) "[\0-\x7F\xC2-\xF4][\x80-\xBF]*", which matches exactly one UTF-8 byte sequence, assuming that the subject is a valid UTF-8 string.