Distorts a string by randomly replacing characters in it.
a string to distort.
a distored string.
Generates random alpha characted [A-Za-z]
a random characted.
Generates a random string, consisting of upper and lower case letters (of the English alphabet), digits (0-9), and symbols ("_,.:-/.[].{},#-!,$=%.+^.&*-() ").
(optional) minimum string length.
maximum string length.
a random string.
Picks a random string from an array of string.
strings to pick from.
a randomly picked string.
Picks a random character from a string.
a string to pick a char from
a randomly picked char.
Generated using TypeDoc
Random generator for string values.
Example
let value1 = RandomString.pickChar("ABC"); // Possible result: "C" let value2 = RandomString.pick(["A","B","C"]); // Possible result: "gBW"