<< DeleteUptoCharacter | Index | FormatLine >>
Match EAN-Code with spaces (BM PDF file)
- /\d\{5} \d\{3} \d
- /76 80 \d\{5} \d\{3} \d
Remove all lines that do not match regular expression
- g!/76 80 \d\{5} \d\{3} \d/d
Copy matches
Open New File
Paste Matches
Finally remove the white spaces
Find EAN and "A+"
- :g/76 80 \d\{5} \d\{3} \d\|A+/m$
This will work too
- /\(76 80 \d\{5} \d\{3} \d\)\|\(A+\)
Then copy the matches in the new file
- /76 80 \d\{5} \d\{3} \d\nA+
Remove blank lines