Random Value
Now fill generate random value into form fields
On this page
By Default the length of string is fixed to 6 and filter is set to all character + numbers + symbol so when you use
<random>
you will get random string of length 6 with mix of char + num + symbol
<random> | Description (Generate Random value) |
---|---|
<random[.]{6}> | [.] - Any Single Character {6} - no of characters 6
|
<random[.]{6,12}> | [.] - Any single character {6,12} - no of characters between 6 and 12
|
<random[a-z]{6}> | [a-z] - A character in the range: a-z
|
<random[A-Z]{6}> | [A-Z] - A character in the range: A-Z
|
<random[\d]{6}> | [\d] - A digit
|
<random[\w]{6}> | [\w] - A word character
|
<random[custom]{6}> | [custom] - A custom string character
|