Utf8.title: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
m (swap with utf8.upper)
m (add case folding note)
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Shared function}}
{{Shared function}}
 
{{Note|You may want to read up on [https://www.w3.org/International/wiki/Case_folding case folding]}}
Converts a UTF-8 string to upper-case. If ''input'' is an integer, it's treat as a code point and a convert code point (number) is returned.
Converts a UTF-8 string to title case (uppercase). If ''input'' is an integer, it is treated as a code point and a converted code point (number) is returned.


==Syntax==
==Syntax==
Line 12: Line 12:


===Returns===
===Returns===
Returns a ''string'' in upper-case.
Returns a ''string'' in uppercase.


==Example==
==Example==
<section name="Client" class="client" show="true">
<section name="Client" class="client" show="true">
This example shows how to convert a string to upper-case.
This example shows how to convert a string to uppercase.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
local output = utf8.upper( "WHAT ARE YOU UP TO? Do you like uppercase?" )
local output = utf8.upper( "WHAT ARE YOU UP TO? Do you like uppercase?" )

Revision as of 18:16, 15 February 2016

[[{{{image}}}|link=|]] Note: You may want to read up on case folding

Converts a UTF-8 string to title case (uppercase). If input is an integer, it is treated as a code point and a converted code point (number) is returned.

Syntax

string utf8.upper ( string|int input )
string utf8.title ( string|int input )

Required Arguments

  • input: A string character sequence OR an integer value

Returns

Returns a string in uppercase.

Example

Click to collapse [-]
Client

This example shows how to convert a string to uppercase.

local output = utf8.upper( "WHAT ARE YOU UP TO? Do you like uppercase?" )
outputConsole( output ) -- WHAT ARE YOU UP TO? DO YOU LIKE UPPERCASE?

local value = utf8.title( 1088 )
outputConsole( value, type( value ) ) -- 1056, number

See Also