don't know if regular expressions fit here...
just some n00bish question...
if i have for example the following text:
Value1: 111
Value2: 222
Value3: 333
i want to get the value of Value2. is there a way to get ONLY the value (in this case "222") without the "Value2: " in just 1 expression?
as i do it now, it would require at least 2 expressions (depending on the initial text, here it's a simple case).
enno if i do this expression: Value2: [0-9]*
it would return the whole line and not just the value, so i would need to do a second expression on the result to extract only the value...
so any way to do it with just 1 expression? like i want to match "Value2: [0-9]*" but i just want it to return the [0-9]*
just some n00bish question...
if i have for example the following text:
Value1: 111
Value2: 222
Value3: 333
i want to get the value of Value2. is there a way to get ONLY the value (in this case "222") without the "Value2: " in just 1 expression?
as i do it now, it would require at least 2 expressions (depending on the initial text, here it's a simple case).
enno if i do this expression: Value2: [0-9]*
it would return the whole line and not just the value, so i would need to do a second expression on the result to extract only the value...
so any way to do it with just 1 expression? like i want to match "Value2: [0-9]*" but i just want it to return the [0-9]*