Difference between revisions of "Utf8.title"

From GiderosMobile
 
(7 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 ===
Convert UTF-8 string s to title case used to compare by ignore case. if s is a number, it's treat as a code point and return a convert code point (number). utf8.lower/utf8.upper has the same extension.
+
Converts UTF-8 string ''s'' to title case used to compare ignoring case.
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
(string) = utf8.title(s)
 
(string) = utf8.title(s)
</source>
+
</syntaxhighlight>
'''s''': (string) ''''''<br/>
+
 
 +
If ''s'' is a number, it is treated as a code point and returns a converted code point (number).
 +
 
 +
utf8.lower/utf8.upper has the same extension.
 +
 
 +
=== Parameters ===
 +
'''s''': (string) <br/>
 +
 
 +
=== Return values ===
 
'''Returns''' (string) string in title case<br/>
 
'''Returns''' (string) string in title case<br/>
 +
 +
{{Utf8}}

Latest revision as of 23:18, 1 December 2023

Available since: Gideros 2016.06
Class: utf8

Description

Converts UTF-8 string s to title case used to compare ignoring case.

(string) = utf8.title(s)

If s is a number, it is treated as a code point and returns a converted code point (number).

utf8.lower/utf8.upper has the same extension.

Parameters

s: (string)

Return values

Returns (string) string in title case