In order to remove blank lines:
find \n and replace with nothing.
In order to remove single and multiple spaces between words and decimals:
find \s+ and replace with none.
Lets say we want to remove 209 characters along with new line. character contains both word, decimal and dot.
[\w\d\.]{209}\n
Lets say we want to remove 60 hex characters from 2000 lines. And replace with nothing. Edit>lines>join lines
[0-9a-z]{60}
lets say we want to remove first 16 and last 48 characters and want to keep middle 32 characters and replace with only middle one.
find: \w{16}(\w{32})\w{48}
replace: $1
lets say we want to remove double space then all words.
find: \s\s\w+
Avi
Comments
Post a Comment