2gud4yous
Shonen Battle Strategist
LEVEL 1
400 XP
You'd need the following:
- Notepad++/Any other notepad program, where you can use a regex
- The regex
Regex you should be using is:
.*{Word}.*\r?\n
What does this regex do?
It removes ALL lines containing the word you've set.
Example:
Example:Example|FREE
Example:Example|FREE
Example:Example|FREE
Example:Example|PREMIUM
Example:Example|FREE
Example:Example|PREMIUM
I would like to ONLY keep the premium accounts.
Then I would go onto Notepad++/Your text editor (I will use Notepad++):
Step 1: Use the shortcut CTRL+F, and navigate to the "Replace" tab.
Step 2: Make sure to tick "Regular expression"
Step 3: In the "Find what:", then insert the regular expression .*{Word}.*\r?\n
(Which will end up looking like this) -> .*FREE.*\r?\n
Step 4: Make sure to remove everything in the "Replace with:" box, and click on "Replace All"
Going back to my example, then it would look like this now:
Example:Example|PREMIUM
Example:Example|PREMIUM
Then you only have the premium accounts left, and they are ready to get sold/used or whatever you want to do with them!
If you need any help, or something is oddly explained, then please let me know and I will correct it as I just wrote this very fast!
Thanks for reading, and I wish you a great day
- Notepad++/Any other notepad program, where you can use a regex
- The regex
Regex you should be using is:
.*{Word}.*\r?\n
What does this regex do?
It removes ALL lines containing the word you've set.
Example:
Example:Example|FREE
Example:Example|FREE
Example:Example|FREE
Example:Example|PREMIUM
Example:Example|FREE
Example:Example|PREMIUM
I would like to ONLY keep the premium accounts.
Then I would go onto Notepad++/Your text editor (I will use Notepad++):
Step 1: Use the shortcut CTRL+F, and navigate to the "Replace" tab.
Step 2: Make sure to tick "Regular expression"
Step 3: In the "Find what:", then insert the regular expression .*{Word}.*\r?\n
(Which will end up looking like this) -> .*FREE.*\r?\n
Step 4: Make sure to remove everything in the "Replace with:" box, and click on "Replace All"
Going back to my example, then it would look like this now:
Example:Example|PREMIUM
Example:Example|PREMIUM
Then you only have the premium accounts left, and they are ready to get sold/used or whatever you want to do with them!
If you need any help, or something is oddly explained, then please let me know and I will correct it as I just wrote this very fast!
Thanks for reading, and I wish you a great day