TextCalc Formats

1. String repetition

You can use input strings that contain patterns for string repetition in the format: count*"text".

Example: "3*abc" will be replaced with "abcabcabc".

2. Counter and random values

You can use input strings that contain counters and random values using the format: #^, #?, and #~.

3. JavaScript evaluation

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".

4. Escape sequences

You can use various escape sequences in the input string: