From d196ce1c86c27e0b07b2ee537da07e362f44e784 Mon Sep 17 00:00:00 2001 From: mitchell <70453897+667e-11@users.noreply.github.com> Date: Mon, 17 Jan 2011 15:50:06 -0500 Subject: Added Adeptsense. --- modules/lua/api/string.luadoc | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 modules/lua/api/string.luadoc (limited to 'modules/lua/api/string.luadoc') diff --git a/modules/lua/api/string.luadoc b/modules/lua/api/string.luadoc deleted file mode 100644 index e1f99e82..00000000 --- a/modules/lua/api/string.luadoc +++ /dev/null @@ -1,33 +0,0 @@ ---- Returns numerical code, nil if index out of range, default i=1. -function byte(s [, i]) ---- Returns a string built from 0 or more integers. -function char(i1, i2, ...) ---- Returns binary representation of function, used with loadstring. -function dump(function) ---- Matches pattern in s, returns start,end indices, else nil. -function find(s, pattern [, init [, plain]]) ---- Returns formatted string, printf-style. -function format(formatstring, e1, e2, ...) ---- Returns iterator function that returns next captures from pattern pat on s. -function gfind(s, pat) ---- Returns copy of s with pat replaced by repl, and substitutions made. -function gsub(s, pat, repl [, n]) ---- Returns string length. -function len(s) ---- Returns string with letters in lower case. -function lower(s) ---- Returns string with n copies of string s. -function rep(s, n) ---- Returns substring from index i to j of s, default j=-1(string length). -function sub(s, i [, j]) ---- Returns string with letters in upper case. -function upper(s) - ---- --- Converts a string from one character set to another using iconv(). --- Valid character sets are ones GLib's g_convert() accepts, typically GNU --- iconv's character sets. --- @param text The text to convert. --- @param to The character set to convert to. --- @param from The character set to convert from. -function iconv(text, to, from) end -- cgit v1.2.3