- What separators are supported?
- Newline, space, tab, empty, comma, or any custom string. The separator is inserted between repetitions, not at the start or end.
- What's the max repeat count?
- Soft cap at 10,000 to protect the browser. Beyond that, the repeated text usually isn't useful and you should use a generator script.
- Can I repeat non-text?
- The tool is string-focused. For binary repetition use a shell command (printf, dd). For images/videos use dedicated tools.
- Is this useful for testing?
- Common uses: stress-testing text-length limits, padding input to exactly N chars, generating long strings for DB field testing. Also for fun (100 emojis in a row).