Page 1 of 1

Remove all content of multiple txt files

Posted: Tue Dec 20, 2016 10:41 pm
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.

Re: Remove all content of multiple txt files

Posted: Wed Dec 21, 2016 10:21 am
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!