-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathapi.go
98 lines (87 loc) · 2.57 KB
/
api.go
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
// Package strings implements golang package strings functionality for lua.
package strings
import (
"strings"
lua "github.com/yuin/gopher-lua"
)
// Split lua strings.split(string, sep): port of go string.Split() returns table
func Split(L *lua.LState) int {
str := L.CheckString(1)
deli := ""
if L.GetTop() > 1 {
deli = L.CheckString(2)
}
strSlice := strings.Split(str, deli)
result := L.CreateTable(len(strSlice), 0)
for _, str := range strSlice {
result.Append(lua.LString(str))
}
L.Push(result)
return 1
}
// Fields lua strings.fields(string) Port of go string.Fields() returns table
func Fields(L *lua.LState) int {
str := L.CheckString(1)
strSlice := strings.Fields(str)
result := L.CreateTable(len(strSlice), 0)
for _, str := range strSlice {
result.Append(lua.LString(str))
}
L.Push(result)
return 1
}
// HasPrefix lua strings.has_prefix(string, suffix): port of go string.HasPrefix() return bool
func HasPrefix(L *lua.LState) int {
str1 := L.CheckString(1)
str2 := L.CheckString(2)
result := strings.HasPrefix(str1, str2)
L.Push(lua.LBool(result))
return 1
}
// HasSuffix lua strings.has_suffix(string, prefix): port of go string.HasSuffix() returns bool
func HasSuffix(L *lua.LState) int {
str1 := L.CheckString(1)
str2 := L.CheckString(2)
result := strings.HasSuffix(str1, str2)
L.Push(lua.LBool(result))
return 1
}
// Trim lua strings.trim(string, cutset) Port of go string.Trim() returns string
func Trim(L *lua.LState) int {
str1 := L.CheckString(1)
str2 := L.CheckString(2)
result := strings.Trim(str1, str2)
L.Push(lua.LString(result))
return 1
}
// TrimSpace lua strings.trim_space(string) Port of go string.TrimSpace() returns string
func TrimSpace(L *lua.LState) int {
s := L.CheckString(1)
result := strings.TrimSpace(s)
L.Push(lua.LString(result))
return 1
}
// TrimPrefix lua strings.trim_prefix(string, cutset) Port of go string.TrimPrefix() returns string
func TrimPrefix(L *lua.LState) int {
str1 := L.CheckString(1)
str2 := L.CheckString(2)
result := strings.TrimPrefix(str1, str2)
L.Push(lua.LString(result))
return 1
}
// TrimSuffix lua strings.trim_suffix(string, cutset) Port of go string.TrimSuffix() returns string
func TrimSuffix(L *lua.LState) int {
str1 := L.CheckString(1)
str2 := L.CheckString(2)
result := strings.TrimSuffix(str1, str2)
L.Push(lua.LString(result))
return 1
}
// Contains lua strings.contains(string, cutset) Port of go string.Contains() returns bool
func Contains(L *lua.LState) int {
str1 := L.CheckString(1)
str2 := L.CheckString(2)
result := strings.Contains(str1, str2)
L.Push(lua.LBool(result))
return 1
}