Repeat text as many times as you want
The text repeater duplicates any word, line, or multi-line block a set number of times, joined by a separator of your choice — newline, space, comma, or nothing at all. It is handy for generating test data, filler content, repeated markup, and long strings for testing.
How it works
The tool reads three inputs: the text, the repeat count, and the separator. In the separator field, the escape sequences \n and \t are converted to a real newline and tab. It then builds an array of N copies of your text and joins them with the separator, so N copies produce N − 1 separators (no trailing one). The count is capped at 100,000 to keep the browser responsive, and an empty text or a count of zero produces empty output.
Example
Text Hi, count 3, separator \n produces:
Hi
Hi
Hi
With separator , instead, the same input yields Hi, Hi, Hi. A character count of the result is shown, and one click copies it.
It all runs in your browser; nothing is uploaded.