the target page i am reading is on another web server.
can someone help me with a regular expression? i can move on with this project if i can just extract the url that the form submits to.
i need to match:
action=somepage.html
action="somepage.html"
theoretically, .. will this match it?\
Code:
\saction=[\"]?(.*)[\"][\s>]
it would have to match:
<space>action=(quotes or no quotes)(any url)(quotes or no quotes)(space or bracket)
i just made that expression as i was typing this post, so i'll go try it now.