We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff0b05e commit 8f32887Copy full SHA for 8f32887
global-functions
@@ -28,6 +28,7 @@
28
:global EscapeForRegEx;
29
:global FlushEmailQueue;
30
:global GetMacVendor;
31
+:global GetRandom20CharAlNum;
32
:global GetRandom20CharHex;
33
:global GetRandomNumber;
34
:global HexToNum;
@@ -400,6 +401,13 @@
400
401
}
402
403
404
+# generate random 20 chars alphabetical (A-Z & a-z) and numerical (0-9)
405
+:set GetRandom20CharAlNum do={
406
+ :global EitherOr;
407
+
408
+ :return [ :rndstr length=[ $EitherOr [ :tonum $1 ] 20 ] from="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" ];
409
+}
410
411
# generate random 20 chars hex (0-9 and a-f)
412
:set GetRandom20CharHex do={
413
:global EitherOr;
0 commit comments