String

From GiderosMobile
Revision as of 15:18, 23 August 2018 by Hgy29 (talk | contribs)

Supported platforms: android, ios, mac, pc
Available since: Gideros 2011.6

Description

This library provides generic functions for string manipulation, such as finding and extracting substrings, and pattern matching. When indexing a string in Lua, the first character is at position 1 (not at 0, as in C). Indices are allowed to be negative and are interpreted as indexing backwards, from the end of the string. Thus, the last character is at position -1, and so on.

The string library provides all its functions inside the table string. It also sets a metatable for strings where the __index field points to the string table. Therefore, you can use the string functions in object-oriented style. For instance, string.byte(s, i) can be written as s:byte(i). 
The string library assumes one-byte character encodings.

Methods

string.byte Template:Returns numerical code, nil if index out of range, default i=1
string.char Template:Returns a string built from 0 or more integers
string.dump Template:Returns binary representation of function, used with loadstring
string.find Template:Matches pattern in s, returns start,end indices, else nil
string.format Template:Returns formatted string, printf-style
string.gmatch Template:Returns iterator function that returns next captures from pattern pat on s
string.gsub Template:Returns copy of s with pat replaced by repl, and substitutions made
string.len Template:Returns string length
string.lower Template:Returns string with letters in lower case
string.match Template:Searches a string for a pattern.
string.rep Template:Returns string with n copies of string s
string.sub Template:Returns substring from index i to j of s, default j=-1(string length-
string.upper Template:Returns string with letters in upper case

Events

Constants