You can use input strings that contain patterns for string repetition in the format: count*"text"
.
Example: "3*abc"
will be replaced with "abcabcabc"
.
You can use input strings that contain counters and random values using the format: #^
, #?
, and #~
.
#^
represents a counter that increments for each occurrence.#?
represents the current counter value.#~
represents a random number.You can use JavaScript evaluations enclosed in curly brackets ({}
) within the input string. The evaluated JavaScript code will be replaced with its result.
Example: "{2 + 3}"
will be replaced with "5"
.
You can use various escape sequences in the input string:
\n
- newline\r
- carriage return\t
- tab\v
- vertical tab\\
- backslash\{
- opening curly bracket\}
- closing curly bracket