user3443152
user3443152

Reputation: 39

Delete everything after a number of characters in string in Notepad++

The following is an example of 27 characters per line in Notepadd ++. I need to limit the characters per line to 14 characters.

111111111111111111111111111
222222222222222222222222222
333333333333333333333333333

I need it to look like the following:

11111111111111
22222222222222
33333333333333

How can I can limit the number of characters to 14 characters per line in Notepad++

Upvotes: 3

Views: 3037

Answers (2)

user3881339
user3881339

Reputation:

And also

Limit characters count in line and remove more that 14

Select Regular ext.Unselect matches new line

Find what: ^(.{1,14}).* Replace with: \1

Save to macro.

Upvotes: 0

Toto
Toto

Reputation: 91385

Find what: ^(.{1,14}).*
Replace with: $1

Upvotes: 6

Related Questions