Remove all content of multiple txt files

Tool for Search and Replace across multiple files.
Post Reply
superska
Posts: 1
Joined: Tue Dec 20, 2016 10:39 pm

Remove all content of multiple txt files

Post by superska »

Hi all,
I just want to clear the content of multiple txt files and replace with blank lines or even nothing
I don't how how to tell "everything" in "Find"
Can you help me ?
Thank you.
User avatar
DigitalVolcano
Site Admin
Posts: 1717
Joined: Thu Jun 09, 2011 10:04 am

Re: Remove all content of multiple txt files

Post by DigitalVolcano »

You can use this Regular Expression:

Code: Select all

[\s\S]*
This will match everything in the file and you can replace with nothing. Use with care!
Post Reply