I want to catch the value of some HTML tag. that could look like this:
value='3242312-3245-3245,234:3245:324,asdf asdf,asdf asd'>
or like this:
value=358 >
and maybe this:
value=83 selected='selected'>
I tried:
Pattern.compile("value=[[\'(.+)\'][(0-9)\\s]]")
but with no success...
any idea what pattern should I use?