I want to search and replace a lot of numbers in the range 0-9 and add one to them, so they become in the range 1-10 instead.
for example: 0 3 5
would become: 1 4 6
In eclipse Find/Replace window I can match a number with ^([0-9]+)$
In the replace-field can I somehow add to the matched number $1?
/G