У меня есть список строк в этой форме
1:nlcbjduy14 <- I want regex to find this one
2:Peoples123 <- I don't want regex to find this one, as it has 3 digits.
3:sqourzyr17 <- I want regex to find this one
4:rdmaszgr94 <- I want regex to find this one
5:tnwiudic22 <- I want regex to find this one
6:zfcxmkrs21 <- I want regex to find this one
7:xrwhsgno55 <- I want regex to find this one
8:modtwtrr06 <- I want regex to find this one
9:People123 <- I don't want regex to find this one, as it is isn't 10 chars long and it consists of 3 digits.
10:aetmyqqh52 <- I want regex to find this one
11:Howtocodelikeapro12 <- I don't want regex to find this one, as it is isn't 10 chars long
12:netphvib58 <- I want regex to find this one
13:uwyiqhoj29 <- I want regex to find this one
14:RegexJustiIsntDoingItForMe
15:qyeiaecj27 <- I want regex to find this one
16:buttercake <- I don't want regex to find this one, as it doesn't end with 2 digits.
17:bcyiyjdm23 <- I want regex to find this one
18:Differings <- I don't want regex to find this one, as it doesn't end with 2 digits.
То, что я ищу, это какое-то регулярное выражение для замены всех 10-символьных строк, оканчивающихся на макс. 2 цифры.
После замены этих строк это будет выглядеть так:
1:REPLACED
2:Peoples123
3:REPLACED
4:REPLACED
5:REPLACED
6:REPLACED
7:REPLACED
8:REPLACED
9:People123
10:REPLACED
11:Howtocodelikeapro12
12:REPLACED
13:REPLACED
14:RegexJustiIsntDoingItForMe
15:REPLACED
16:buttercake
17:REPLACED
18:Differings
Может ли кто-нибудь дать мне пример регулярного выражения, которое будет работать?
Я не смог найти другие (понятные) вопросы по этому поводу в Stackoverflow, так как я не очень знаком с регулярными выражениями. Я пытаюсь сопоставить их в Notepad ++, а не на любом языке программирования.
Заранее спасибо!