-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstring.gs
More file actions
440 lines (406 loc) · 11.4 KB
/
string.gs
File metadata and controls
440 lines (406 loc) · 11.4 KB
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
%define ASCII_UPPERCASE "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
%define ASCII_LOWERCASE "abcdefghijklmnopqrstuvwxyz"
%define ASCII_DIGITS "0123456789"
%define strbuf std__string__strbuf
list strbuf;
# Slice $text from $start to $end, $end is exclusive. $start and $end are 1-based.
func slice(text, start, end) {
delete strbuf;
repeat $end - $start {
add $text[$start + length(strbuf)] to strbuf;
}
return strbuf;
}
# Conditional macro to check if $text starts with $prefix.
%define ENDSWITH(TEXT,SUFFIX) \
(slice((TEXT), 1 + (length(TEXT) - length(SUFFIX)), 1 + length(TEXT)) == (SUFFIX))
# Conditional macro to check if $text starts with $prefix.
%define STARTSWITH(TEXT,PREFIX) \
(slice((TEXT), 1, 1 + length(PREFIX)) == (PREFIX))
# Remove $prefix from the beginning of $text.
%define REMOVEPREFIX(TEXT,PREFIX) (splice((TEXT), 1, length(PREFIX), ""))
# Remove $suffix from the end of $text.
%define REMOVESUFFIX(TEXT,SUFFIX) \
(splice(TEXT, 1 + (length(TEXT) - length(SUFFIX)), length(SUFFIX), ""))
# Replace all occurrences of $subtext with $repl in $text.
func replace(text, subtext, repl) {
local i = 1;
local result = "";
delete strbuf;
until i > length($text) {
add $text[i] to strbuf;
if contains(strbuf, $subtext) {
repeat length($subtext) {
delete strbuf["last"];
}
result &= strbuf & $repl;
delete strbuf;
}
i++;
}
return result & strbuf;
}
# Replace first $n occurrences of $subtext with $repl in $text.
func replacen(text, subtext, repl, n) {
local i = 1;
local n = 0;
local result = "";
delete strbuf;
until i > length($text) {
add $text[i] to strbuf;
if contains(strbuf, $subtext) {
if n < $n {
repeat length($subtext) {
delete strbuf["last"];
}
result &= strbuf & $repl;
} else {
result &= strbuf;
}
delete strbuf;
n++;
}
i++;
}
return result & strbuf;
}
# Replace the $n-th occurrence of $subtext with $repl in $text.
func replacenth(text, subtext, repl, n) {
local i = 1;
local n = 1;
local result = "";
delete strbuf;
until i > length($text) {
add $text[i] to strbuf;
if contains(strbuf, $subtext) {
if n == $n {
repeat length($subtext) {
delete strbuf["last"];
}
result &= strbuf & $repl;
} else {
result &= strbuf;
}
delete strbuf;
n++;
}
i++;
}
return result & strbuf;
}
# Remove $len characters from $text starting at $start and insert $repl in its place.
func splice(text, start, len, repl) {
delete strbuf;
repeat $start - 1 {
add $text[1+length(strbuf)] to strbuf;
}
local result = strbuf & $repl;
delete strbuf;
local i = $start + $len;
repeat 1 + (length($text) - ($start + $len)) {
add $text[i] to strbuf;
i++;
}
return result & strbuf;
}
# Transform ASCII letters in $text to uppercase.
func uppercase(text) {
delete strbuf;
repeat length($text) {
local i = 1;
until $text[1+length(strbuf)] == ASCII_UPPERCASE[i] or i > 26 {
i++;
}
if i > 26 {
add $text[1+length(strbuf)] to strbuf;
} else {
add ASCII_UPPERCASE[i] to strbuf;
}
}
return strbuf;
}
# Transform ASCII letters in $text to lowercase.
func lowercase(text) {
delete strbuf;
repeat length($text) {
local i = 1;
until $text[1+length(strbuf)] == ASCII_UPPERCASE[i] or i > 26 {
i++;
}
if i > 26 {
add $text[1+length(strbuf)] to strbuf;
} else {
add ASCII_LOWERCASE[i] to strbuf;
}
}
return strbuf;
}
# Transform the first character in $text to uppercase, and the rest to lowercase
func capitalize(text) {
delete strbuf;
local i = 1;
until $text[1] == ASCII_UPPERCASE[i] or i > 26 {
i++;
}
if i > 26 {
add $text[1] to strbuf;
} else {
add ASCII_UPPERCASE[i] to strbuf;
}
repeat length($text)-1 {
local i = 1;
until $text[1+length(strbuf)] == ASCII_UPPERCASE[i] or i > 26 {
i++;
}
if i > 26 {
add $text[1+length(strbuf)] to strbuf;
} else {
add ASCII_LOWERCASE[i] to strbuf;
}
}
return strbuf;
}
# Return the index of the first occurrence of $char in $text, or 0 if not found.
func findchar(text, char) {
local i = 1;
repeat length($text) {
if $text[i] == $char {
return i;
}
i++;
}
return 0;
}
# Return the index of the last occurrence of $char in $text, or 0 if not found.
func rfindchar(text, char) {
local i = length($text);
repeat length($text) {
if $text[i] == $char {
return i;
}
i--;
}
return 0;
}
# Return true if all characters in $text are alphanumeric and there is at least one
# character.
func isalnum(text) {
if length($text) == 0 {
return false;
}
local i = 1;
repeat length($text) {
if $text[i] not in ASCII_UPPERCASE & ASCII_DIGITS {
return false;
}
i++;
}
return true;
}
# Return true if all characters in $text are alphabetic and there is at least one
# character.
func isalpha(text) {
if length($text) == 0 {
return false;
}
local i = 1;
repeat length($text) {
if $text[i] not in ASCII_UPPERCASE {
return false;
}
i++;
}
return true;
}
# Conditional macro to check if $text is a digit.
%define ISDIGIT(TEXT) (round(TEXT) == (TEXT))
# Remove leading characters in $text that are in $chars.
func lstrip(text, chars) {
local i = 1;
until $text[i] not in $chars or i > length($text) {
i++;
}
delete strbuf;
until i > length($text) {
add $text[i] to strbuf;
i++;
}
return strbuf;
}
# Remove trailing characters in $text that are in $chars.
func rstrip(text, chars) {
local i = length($text);
until $text[i] not in $chars or i == 1 {
i--;
}
delete strbuf;
until (1+length(strbuf)) > i {
add $text[1+length(strbuf)] to strbuf;
}
return strbuf;
}
# Remove leading and trailing characters in $text that are in $chars.
func strip(text, chars) {
local i = 1;
until $text[i] not in $chars or i > length($text) {
i++;
}
delete strbuf;
until i > length($text) {
add $text[i] to strbuf;
i++;
}
until strbuf["last"] not in $chars {
delete strbuf["last"];
}
return strbuf;
}
list split;
# Split $text into list `split`, separated by character $sep.
proc split text, sep {
delete split;
delete strbuf;
local i = 1;
repeat length($text) {
if $text[i] == $sep {
add strbuf to split;
delete strbuf;
} else {
add $text[i] to strbuf;
}
i++;
}
add strbuf to split;
}
# Split $text into list `split`, separated by newlines.
proc splitlines text {
delete split;
delete strbuf;
local i = 1;
repeat length($text) {
if $text[i] in "\r\n" {
add strbuf to split;
delete strbuf;
} else {
add $text[i] to strbuf;
}
i++;
}
if strbuf == "" {} else {
add strbuf to split;
}
}
# Reverse $text.
func reverse(text) {
delete strbuf;
local i = 1;
repeat length($text) {
add $text[1+length($text)-i] to strbuf;
i++;
}
return strbuf;
}
# Repeat $text $n times.
func repeatstr(text, n) {
local result = "";
repeat $n {
result &= $text;
}
return result;
}
# Return a titlecased version of $text: words start with uppercase characters,
# all remaining cased characters are lowercase.
func titlecase(text) {
local result = "";
local i = 1;
local boundary = false;
repeat length($text) {
local j = 1;
until $text[i] == ASCII_UPPERCASE[j] or j > 26 {
j++;
}
if j > 26 {
boundary = false;
result &= $text[i];
} else {
if boundary == false {
boundary = true;
result &= ASCII_UPPERCASE[j];
} else {
result &= ASCII_LOWERCASE[j];
}
}
i++;
}
return result;
}
# Join `LIST` elements into a string, separated by `SEP` and store the result in a local
# variable `STORE`.
%define JOIN(LIST,SEP,STORE) \
local STORE = ""; \
local i = 1; \
repeat length(LIST) { \
STORE &= LIST[i]; \
if i < length(LIST) { \
STORE &= (SEP); \
} \
i++; \
}
# Join `LIST` by `FIELD` with `SEP` separator and store the result in a local variable
# `STORE`.
%define JOIN_BY_FIELD(LIST,FIELD,SEP,STORE) \
local STORE = ""; \
local i = 1; \
repeat length(LIST) { \
STORE &= LIST[i]FIELD; \
if i < length(LIST) { \
STORE &= (SEP); \
} \
i++; \
}
func truncate(text, maxlength) {
if length($text) > $maxlength {
return slice($text, 1, $maxlength-4) & "...";
} else {
return $text;
}
}
func casecmp(a, b) {
if length($a) != length($b) {
return false;
}
local i = 1;
repeat length($a) {
switch_costume $a;
local c = costume_number();
switch_costume $b;
if c != costume_number() {
return false;
}
i++;
}
return true;
}
func countchar(text, char) {
local i = 1;
local count = 0;
repeat length($text) {
if $text[i] == $char {
count++;
}
i++;
}
return count;
}
func countchars(text, chars) {
local i = 1;
local count = 0;
repeat length($text) {
if $text[i] in $chars {
count++;
}
i++;
}
return count;
}
%undef strbuf