-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstring.lua
46 lines (23 loc) · 936 Bytes
/
string.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
local function subChar( s, i ) return s:sub( i, i ) end
local function first(s) return subChar(s, 1) end
local function last(s) return subChar(s, #s) end
local function isEmpty(s) return #s == 0 end
local function isBlank(s)
local clean = s:gsub(" ", "") return isEmpty(clean)
end
local function startsWith( s1, s2 ) return s1:match( '^' .. s2 ) end
local function endsWith( s1, s2 ) return s1:match( s2 .. '$' ) end
local t = {
subChar = subChar, first = first, last = last,
isEmpty = isEmpty, isBlank = isBlank,
startsWith = startsWith, endsWith = endsWith
}
string.Astro = function(s)
local __index = function( table, key )
local f = t[key] if not f then return end
return function( table, ... ) return f( s, ... ) end
end
local meta = { __index = __index }
return setmetatable( {}, meta )
end
return t