-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstring.gs
More file actions
485 lines (442 loc) · 13.1 KB
/
string.gs
File metadata and controls
485 lines (442 loc) · 13.1 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
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
%define WHITESPACE " \t\n\r"
%define ASCII_LOWERCASE "abcdefghijklmnopqrstuvwxyz"
%define ASCII_UPPERCASE "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
%define ASCII_LETTERS ASCII_LOWERCASE & ASCII_UPPERCASE
%define DIGITS "0123456789"
%define HEXDIGITS DIGITS & "abcdef" & "ABCDEF"
%define OCTDIGITS "01234567"
%define PUNCTUATION "!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~"
%define PRINTABLE_CHARS DIGITS & ASCII_LETTERS & PUNCTUATION & WHITESPACE
# Return the characters of $text between $start and $end (inclusive).
func slice(string, start, end) {
local ret = "";
local i = $start;
until i >= $end {
ret &= $string[i];
i++;
}
return ret;
}
func slice_step(string, start, end, step) {
if $start == $end or $step + "" == 0 {
return "";
} else {
local ret = "";
local i = $start;
if $step < 0 {
until i <= $end {
ret &= $string[i];
i += $step;
}
return ret;
} else {
until i >= $end {
ret &= $string[i];
i += $step;
}
return ret;
}
}
}
# Remove $delete_count characters from $text starting at $start and insert $ins
# between.
func splice(text, start, delete_count, ins) {
local result = "";
local i = 1;
if $start > 0 {
repeat $start - 1 {
result &= $text[i];
i++;
}
} else {
repeat length($text) + $start {
result &= $text[i];
i++;
}
}
result &= $ins;
i += $delete_count;
until i > length($text) {
result &= $text[i];
i++;
}
return result;
}
# Transform ASCII letters in $text to uppercase.
func uppercase(text) {
local result = "";
local i = 1;
repeat length($text) {
local j = 1;
# This also detects for empty string, which happens when j is out of range of ASCII_UPPERCASE, i.e j > 26
until ASCII_UPPERCASE[j] in $text[i] {
j++;
}
if j > 26 {
result &= $text[i];
} else {
result &= ASCII_UPPERCASE[j];
}
i++;
}
return result;
}
# Transform ASCII letters in $text to lowercase.
func lowercase(text) {
local result = "";
local i = 1;
repeat length($text) {
local j = 1;
until $text[i] == ASCII_UPPERCASE[j] or j > 26 {
j++;
}
if j > 26 {
result &= $text[i];
} else {
result &= ASCII_LOWERCASE[j];
}
i++;
}
return result;
}
# Transform the first character in $text to uppercase, and the rest to lowercase.
func capitalize(text) {
local result = "";
local i = 1;
until $text[1] == ASCII_UPPERCASE[i] or i > 26 {
i++;
}
if i > 26 {
result &= $text[1];
} else {
result &= ASCII_UPPERCASE[i];
}
i++;
repeat length($text) - 1 {
local j = 1;
until $text[i] == ASCII_LOWERCASE[j] or j > 26 {
j++;
}
if j > 26 {
result &= $text[i];
} else {
result &= ASCII_LOWERCASE[j];
}
i++;
}
return result;
}
# Conditional macro to check if $text starts with $prefix.
%define ENDSWITH(TEXT,SUFFIX) \
(slice((TEXT), 1 + length(TEXT) - length(SUFFIX), length(TEXT)) == (SUFFIX))
# Conditional macro to check if $text starts with $prefix.
%define STARTSWITH(TEXT,PREFIX) \
(slice((TEXT), 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, -length(SUFFIX), length(SUFFIX), ""))
# 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=" \n") {
local result = "";
local i = 1;
until $text[i] not in $chars or i > length($text) {
i++;
}
until i > length($text) {
result &= $text[i];
i++;
}
return result;
}
# Remove trailing characters in $text that are in $chars.
func rstrip(text, chars=" \n") {
local i = length($text);
until $text[i] not in $chars or i == 1 {
i--;
}
local result = "";
j = 1;
until j > i {
result &= $text[j];
j++;
}
return result;
}
# Remove leading and trailing characters in $text that are in $chars.
%define STRIP(text,chars) lstrip(rstrip(text, chars), chars)
list split;
# Split $text into a list of strings, separated by $sep, which is 1 char. Result is stored in list
# `split`.
proc split text, sep {
delete split;
local part = "";
local i = 1;
repeat length($text) {
if $text[i] == $sep {
add part to split;
part = "";
} else {
part &= $text[i];
}
i++;
}
add part to split;
}
# Split $text into a list of strings, seperated by $sep, which is also a string. Not case sensitive. Result is stored in list
# `split`
proc split_by_str text, sep {
delete split;
local i = 1;
until i > length $text {
local part = "";
local hit_splitter = false;
until hit_splitter or i > length $text {
hit_splitter = _string_compute_hit(i, $text, $sep);
local letter = $text[i];
if not hit_splitter {
part &= letter;
}
i++;
}
i += length $sep - 1;
add part to split;
}
}
func _string_compute_hit(i, text, sep) {
if $text[$i] == $sep[1] {
local future = "";
local i = $i;
repeat length $sep {
future &= $text[i];
i++;
}
return future == $sep;
} else {
return false;
}
}
# Not really sure why this doesn't work
# %define SPLIT_BY_LIST(text,sep_list) \
# delete split; \
# local i = 1; \
# until i > length text { \
# local part = ""; \
# local hit_splitter = false; \
# \
# until hit_splitter or i > length text { \
# local k = 1; \
# until hit_splitter or k >= length sep_list { \
# local splitter = sep_list[k]; \
# hit_splitter = _string_compute_hit(i, text, splitter); \
# k++; \
# } \
# \
# local letter = text[i]; \
# if not hit_splitter { \
# part &= letter; \
# splitter = ""; \
# } \
# i++; \
# } \
# i += length splitter - 1; \
# add part to split; \
# } \
# 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;
}
# Reverse $text.
func reverse(text) {
local result = "";
local i = 1;
repeat length($text) {
result = $text[i] & result;
i++;
}
return result;
}
# Replace all occurrences of $replaced in $text with $replacement.
func replace(text, replaced, replacement) {
local result = "";
local i = 1;
repeat length($text) {
local j = 0;
local replace = true;
repeat length($replaced) {
if $text[i + j] != $replaced[j + 1] {
replace = false;
}
j++;
}
if replace == true {
i += length($replaced) - 1;
result &= $replacement;
} else {
result &= $text[i];
}
i++;
}
return result;
}
# repeat $string $times times (equivalent to int-string multiplication in python)
func repstr(string, times) {
local ret = "";
repeat $times {
ret &= $string;
}
return ret;
}
# Join `LIST` elements into a string, separated by `SEP` and store the result in `STORE`.
%define JOIN(LIST,SEP,STORE) \
local STORE = ""; \
local i = 1; \
repeat length(LIST) { \
STORE &= LIST[i]; \
if i < length(LIST) { \
STORE &= SEP; \
} \
i++; \
}
# Pad '0' to the left until it reaches the specified length.
func zfill(string, len) {
local ret = $string;
repeat $len - length $string {
ret = 0 & ret;
}
return ret;
}
func startswith(string, start) {
local i = 1;
repeat length $start {
if $string[i] != $start[i] {
return false;
}
i++;
}
return true;
}
# startswith_from(1, ...) is equivalent to startswith(...)
func startswith_from(i, string, start) {
local i = 1;
repeat length $start {
if $string[i + $i - 1] != $start[i] {
return false;
}
i++;
}
return true;
}
func endswith(string, end) {
local i = 0;
repeat length $end {
if $string[length $string - i] != $end[length $end - i] {
return false;
}
i++;
}
return true;
}
# endswith_from(length <str>, <str>, ...) is equivalent to endswith(<str>, ...)
func endswith_from(i, string, end) {
local i = 0;
repeat length $end {
if $string[$i - i] != $end[length $end - i] {
return false;
}
i++;
}
return true;
}
# Pad ' ' to the left until it reaches the specified length.
func ljust(string, len, char = " ") {
local ret = $string;
repeat $len - length $string {
ret = $char & ret;
}
return ret;
}
# Pad ' ' to the right until it reaches the specified length.
func rjust(string, len, char = " ") {
local ret = $string;
repeat $len - length $string {
ret &= $char;
}
return ret;
}