I am doing simple regex search and replace with Eclipse
Find/Replace (I assume behind the scene it uses Java regex) I am finding some pattern with some numbers in it and while replacing I want to multiply those numbers and use that as a replacement. How do I achieve this with just regex
example string: input30
regex pattern: input(\d)\d{1,2}
regex replace: output\1*2 // I expect output6 but I get output3*2