summaryrefslogtreecommitdiff
path: root/npc/functions/string.txt
diff options
context:
space:
mode:
authormekolat <mekolat@users.noreply.github.com>2016-06-20 23:23:50 -0400
committermekolat <mekolat@users.noreply.github.com>2016-06-22 14:49:42 -0400
commit4215b2baf47faf8eec14060e3da655d98ffe1636 (patch)
treefbb98b89fc9fe333e97394e5a21e0c6c905496b0 /npc/functions/string.txt
parentd7765ee21045c3be2dd48edb329125fa7251de0f (diff)
downloadserverdata-4215b2baf47faf8eec14060e3da655d98ffe1636.tar.gz
serverdata-4215b2baf47faf8eec14060e3da655d98ffe1636.tar.bz2
serverdata-4215b2baf47faf8eec14060e3da655d98ffe1636.tar.xz
serverdata-4215b2baf47faf8eec14060e3da655d98ffe1636.zip
add `@music` atcommand
Diffstat (limited to 'npc/functions/string.txt')
-rw-r--r--npc/functions/string.txt66
1 files changed, 66 insertions, 0 deletions
diff --git a/npc/functions/string.txt b/npc/functions/string.txt
new file mode 100644
index 00000000..ef910961
--- /dev/null
+++ b/npc/functions/string.txt
@@ -0,0 +1,66 @@
+// safe string manipulation functions
+// ** does not require PCRE
+
+
+// startswith( "string", "search" )
+//
+// returns true if "string" begins with "search"
+function script startswith {
+ return substr(getarg(0), 0, getstrlen(getarg(1)) - 1) == getarg(1);
+}
+
+// endswith( "string", "search" )
+//
+// returns true if "string" ends with "search"
+function script endswith {
+ .@t = getstrlen(getarg(0)); // total length
+ .@n = getstrlen(getarg(1)); // substring length
+ return substr(getarg(0), .@t - .@n, .@t - 1) == getarg(1);
+}
+
+// capitalize( "string" )
+//
+// returns "string" with its first letter capitalized
+function script capitalize {
+ .@original$ = charat(getarg(0), 0);
+ return setchar(getarg(0), strtoupper(.@original$), 0);
+}
+
+// titlecase( "string" [, "delimiter" [, camel]] )
+//
+// returns "string" with the first letter of each word capitalized
+// if camel is true, the string is joined in a camelCase fashion
+function script titlecase {
+ .@delimiter$ = getarg(1, " ");
+ .@c = getarg(2, 0);
+ explode(.@words$, getarg(0), .@delimiter$);
+
+ for (.@i = (.@c ? 1 : 0); .@i < 255; ++.@i)
+ {
+ if (.@words$[.@i] == "")
+ {
+ break;
+ }
+
+ .@original$ = charat(.@words$[.@i], 0);
+ .@words$[.@i] = setchar(.@words$[.@i], strtoupper(.@original$), 0);
+ }
+
+ return implode(.@words$, (.@c ? "" : .@delimiter$));
+}
+
+// zfill( "string" [, width [, "padding"]] )
+//
+// returns "string" padded to the left with "padding" up to width
+function script zfill {
+ .@str$ = getarg(0);
+ .@width = getarg(1, 8);
+ .@padding$ = getarg(2, "0");
+
+ for (.@s = getstrlen(.@str$); .@s < .@width; ++.@s)
+ {
+ .@str$ = .@padding$ + .@str$;
+ }
+
+ return .@str$;
+}