I have many text rows, and I must find some rows, and to change them.
I wrote such regex rule:
^(Position) ([0-9]+)$ For example, I must find all such rows:
Position 10
Position 11
Position 12
Now I must increase numbers at 5. How can I do it through Regex? I try to wrote such regex rule:
$1 {$2+ 5} I need get result:
Position 15
Position 16
Position 17
But I have got:
Position {10 +5}
Position {11+5}
Position {12+5}