Difference between revisions of "utf8"

m (Updated parent and description)
m
Line 16: Line 16:
  
 
[[Category:Libraries]]
 
[[Category:Libraries]]
{{#set:Description=Provides basic support for manipulating UTF-8 encoded strings.}}
+
{{#set:Description=Provides basic support for manipulating UTF-8 strings.}}
 
{{#set:LOVE Version=0.9.2}}
 
{{#set:LOVE Version=0.9.2}}
 
== Other Languages ==
 
== Other Languages ==
 
{{i18n|utf8}}
 
{{i18n|utf8}}

Revision as of 18:20, 17 March 2015

Available since LÖVE 0.9.2
This module is not supported in earlier versions.


This library provides basic support for handling UTF-8 encoded strings. It provides all its functions inside the table returned by require("utf8"). This library does not provide any support for Unicode other than handling UTF-8 encoding. Any operation that needs the meaning of a character, such as character classification, is outside its scope.

You need to require the module like this:

local utf8 = require("utf8")

Reference Manual

For detailed usage, see the reference manual.

See Also


Other Languages