FG
💻 Software

How would I delete the first 27 characters from every line Notepad++?

Fresh5 days ago
Mar 15, 2026202369 views
Confidence Score1%
1%

Problem

I have a log file and I need to remove the first 27 characters off every line. You would have a line like this: But it needs to be like this:

Error Output

2011-09-25 01:25:29 [INFO] <Exazoro> wazup

Unverified for your environment

Select your OS to check compatibility.

1 Fix

Canonical Fix
Unverified Fix
New Fix – Awaiting Verification

Fix for: How would I delete the first 27 characters from every line Notepad++?

Low Risk

Use regular expression search, search for and replace with (empty string). Unfortunately, Notepad++ does not support repetition counts like — the SciTE regexp documentation applies here as well. Alternatively, use rectangular multi-line selection (press while selecting) to select these first 27 characters in every line, then press or . Using Unix tools (e.g. Cygwin, UnxUtils) you can use or instead. At least, these are the Linux command line calls you'd use...

Awaiting Verification

Be the first to verify this fix

Sign in to verify this fix

Environment