Utf8.escape

From Multi Theft Auto: Wiki
Revision as of 01:49, 15 February 2016 by Necktrox (talk | contribs) (Created page with "__NOTOC__ {{Shared function}} Escapes a string to a UTF-8 format string. It supports several escape formats: *'''%ddd:''' where ddd is a decimal number with variable length *...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Escapes a string to a UTF-8 format string. It supports several escape formats:

  • %ddd: where ddd is a decimal number with variable length
  • %{ddd}: same as above, but enclosed in brackets
  • %uddd: same as %ddd, 'u' stands for unicode
  • %u{ddd}: same as above, but enclosed in brackets
  • %xhhh: hexadigit version of %ddd
  • %x{hhh}: same as above, but enclosed in brackets
  • %?: where '?' stands for any other character to be escaped

Syntax

string utf8.escape ( string input )

Required Arguments

  • input: A string character sequence

Returns

Returns a string containing the UTF-8 characters from the original string.

Example

Click to collapse [-]
Server
local output = utf8.escape("%123 %u123 %{123} %u{123} %xABC %x{ABC}")
print( output ) -- { { { { ઼ ઼

See Also