Matching digits in Notepad++ extended search mode
- by ketchup
Notepad++'s manual is rather vague on the special character for numerical used in extended search mode.
It says: \d### - Decimal value (between 000 and 255)
but literally entering "\d###" doesn't match anything.
What I am trying to do is to replace
if VarA == 12
VarB = 1
with
if VarA == 12
Var12=1
VarB=1