aboutsummaryrefslogtreecommitdiff
path: root/modules/lua/api/string.luadoc
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2011-01-17 15:50:06 -0500
committermitchell <70453897+667e-11@users.noreply.github.com>2011-01-17 15:50:06 -0500
commitd196ce1c86c27e0b07b2ee537da07e362f44e784 (patch)
tree4b3e7cdadc82657d7d3a2aaef2b69beabfc5299c /modules/lua/api/string.luadoc
parent5b3d39a6ac36e344ae95666b6b60f3ee1d4e1057 (diff)
downloadtextadept-d196ce1c86c27e0b07b2ee537da07e362f44e784.tar.gz
textadept-d196ce1c86c27e0b07b2ee537da07e362f44e784.zip
Added Adeptsense.
Diffstat (limited to 'modules/lua/api/string.luadoc')
-rw-r--r--modules/lua/api/string.luadoc33
1 files changed, 0 insertions, 33 deletions
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