Input:
3
9
16
I need an output file which adds a constant 10
to every element in input-
Output:
13
19
26
Is there a quick way to evaluate expressions in Notepad++? I tried a couple of things, including:
Search: [0-9]+
Replace: $0+10
But the output I get is:
3+10
9+10
16+10