savic7
Wallet Guru
2
MONTHS
2 2 MONTHS OF SERVICE
LEVEL 1
300 XP
you need:
notepad ++
combolist
You open comoliste in notepad ++ and then click ctrl + f
tab is to be empty, then you click replace all
[ \t]+$ - space delete
Dictionary:
notepad ++
combolist
You open comoliste in notepad ++ and then click ctrl + f
tab is to be empty, then you click replace all
[ \t]+$ - space delete
Dictionary:
- . - any single character;
- [0-9] - any digit in the form of a digit;
- D - any character except a number;
- [AZ] - each capital letter of the Latin alphabet;
- [az] - any lowercase letter of the Latin alphabet;
- [aZ] - any letter of the Latin alphabet, regardless of the register;
- w stands for a letter, underscore, or number;
- s is space;
- ^ - the beginning of the line;
- $ - end of line;
- * - repeating the symbol (from 0 to infinity);
- 4 1 2 3 - group serial number;
- ^ s * $ - search for blank lines;
- ([0-9] [0-9] *.) - search for double digits.