How can I split text every 256 characters?

0

I have some text and I want to add a paragraph or a page every 256 characters.

It would also be OK if I could limit the amount of characters for each line to 24 characters.

How can I achieve this?

EDG

Posted 2017-02-16T01:51:38.153

Reputation: 11

So, based on the edit, you want a line break every 24 chars and a paragraph break every 256 chars? – mcalex – 2017-02-16T02:53:24.923

Answers

0

Easiest tool for me is Notepad++ (Npp), with the TextFX plugin.

Notepad++ with TextFX plugin

  1. Open the document or copy the text into a blank document.
  2. In any document, Npp or other, type 256, highlight it and copy it to clipboard with Ctrl-C.
  3. Open the TextFX menu, go to TextFX Edit and click on ReWrap text...

DrMoishe Pippik

Posted 2017-02-16T01:51:38.153

Reputation: 13 291