Quote Originally Posted by Pale View Post
Thats almost what i need, but it returns

Code:
"<input type=\"hidden\" name=\"value25\" value=\"1247605870\" />"
and i need it to only return the number "1247605870"

and thanks for the tip about the newbie regular expression program.
I just tried it again. When i run it, the Int32 value gets assigned 1247605870. The only group that will return the whole string is.

Code:
m.Groups[0].Value
Also, its not a newbie regular expression program. I still use it every day, i don't use the regex generator i type it in myself but it allows me to easily test each regex i make.