I want to extract the number 1129
from 10px;"> 1129
using Yahoo pipes regex.
I am using (\d+)
to extract 1129
but what should I use to remove 10px;">
?
I want to extract the number 1129
from 10px;"> 1129
using Yahoo pipes regex.
I am using (\d+)
to extract 1129
but what should I use to remove 10px;">
?
In: item.content
Replace: ^10px;">\s(\d+)$
With: $1
If its always 10px;"> 1129
(or at least xxx> YYYY
where YYY is your number) then I suppose your regex would be (in perl format):
/>\s(\d+)/
1129 will be in $1
Hope that helps. If no, please provide more details on what you are trying to achieve and what is your input.