Lines Matching defs:string
27 local string = require("string")
41 local function wrapper(...) io.write(string.format(...)) end
55 function string:split(delim, max_cols)
60 nextc = string.find(self, delim, start)
62 table.insert(cols, string.sub(self, start, nextc-1))
65 table.insert(cols, string.sub(self, start, string.len(self)))
186 if (not value or not string.find(value, "\n")) then
298 if (string.find(line, match)) then