Tested tool guide
Text and writing tools
Checked August 16, 2026
What Text Repeater does, with a checked example
Type the text once, set a number, and the tool returns that text repeated that many times, optionally joined by a separator or by line breaks. The count is the total number of copies: five copies of 'ha' gives five 'ha's, not four. What surprises people most is the separator: it appears between copies only, never after the last one, so five copies joined with a comma contain four commas. Everything happens in the browser; nothing you paste is sent anywhere. Paste, repeat, and copy the result back out.
Worked example
A concrete input and expected output from the current implementation.
Input
Text: "ha" Count: 5 Separator: ", "
->
Expected output
ha, ha, ha, ha, ha
The tool joins five copies of 'ha' with the separator placed between adjacent copies only, so the result needs four separators, one fewer than the count. No separator is added after the final copy.