Текстийг Давтах
Үгийг, мөрийг эсвэл текстийн блокийг зуу дахин давтах, сонгосон тусгаарлагчтай.
🔒 Энэ хэрэгсэл бүхэлдээ таны хөтөч дээр ажилладаг. Таны файлууд серверт хэзээ ч илгээгддэггүй.
Example shown — replace it with your own text.
How it works
- Type or paste the text you want to repeat. Nothing leaves your device.
- Set how many copies you need and what should go between them.
- Optionally number each copy, and decide whether to trim surrounding whitespace.
- Copy the result to your clipboard, or download it as a .txt file.
Working out how big the result will be
Separators go between copies, not after each one, so there is always one fewer separator than copies. That makes the exact length:
characters = (length of text × n) + (length of separator × (n − 1))
Repeating a 24-character sentence 5 times with a newline between copies gives (24 × 5) + (1 × 4) = 124 characters. The count grows linearly, which is why 10,000 copies of a short paragraph can run past a megabyte — the character counter under the result shows the real figure as you change the settings. One detail worth knowing: a newline counts as one character here, and the line count in the stats reflects the separator you chose. Picking "a blank line" doubles the separator to two newlines, so the line total roughly doubles as well.
FAQ
Is my text sent anywhere?
No. The repeating happens in your own browser as you type, so nothing is uploaded, saved, or logged. Once the page has loaded you can go offline and it still works.
How many copies can I make?
Up to 10,000, and the total result is capped at about 2 million characters. Both limits exist to stop the page from freezing — if you hit one, shorten the text or lower the count and the tool will tell you what it would have produced.
Can I repeat several lines at once?
Yes. Anything you put in the box is treated as one block, line breaks included, and the whole block is repeated as a unit with your chosen separator between copies.
What does "trim spaces around the text" do?
It removes spaces, tabs, and line breaks from the very start and end of your input before repeating, so you do not get unintended gaps between copies. Untick it when the leading or trailing whitespace is deliberate — indentation, for instance.
Why would I number the copies?
Numbering turns the output into a ready-made list, which is useful for test data, numbered placeholders, seating or ticket labels, and anywhere you need a sequence rather than identical lines.
Can I use it to make test data for a spreadsheet?
Yes — choose "A comma and a space" for a single CSV row, or "A new line" for a column you can paste straight down a spreadsheet. Use the Download .txt button if you would rather import the file.
Can I use this to repeat a message for WhatsApp or Instagram?
Yes. Type or paste your message, set how many times to repeat it and what should go between copies, then copy the result and paste it into WhatsApp, Instagram, or any other app. The tool only prepares the text in your browser — it does not connect to or send anything through any messaging service.
How we compare
| Feature | Online Tool Store | Ad-supported text tool sites | Copy-paste by hand |
|---|---|---|---|
| Your text never leaves the page | ✓ | Varies — some post it to a server to process | ✓ |
| Live character, word, and line counts | ✓ | Sometimes | ✗ |
| Custom separators and numbering | ✓ | Usually separator only | ✗ |
| No ads or pop-ups in the way | ✓ | ✗ | ✓ |
| Unlimited output size | Capped at 10,000 copies / ~2M characters | Often capped too | ✓ |
Handy for filling a form field to test its limits, generating placeholder or seed data, making numbered labels, or any job where pressing Ctrl+V forty times is the only alternative. The caps are deliberate — beyond a couple of million characters a browser tab is the wrong tool, and a script is the right one.