Need help with RegEx string..how can I get this element?

simpleonline

Active member
Joined
Sep 13, 2011
Messages
33
Programming Experience
Beginner
I am able to get ALL id's on the page but I wanted to be able to get this particular string of html

VB.NET:
<input autocomplete="off" type="password" tabindex="3"  size="25" name="password" id="password" value=""  onfocus="_helpOn('help__password')"
Here is my current Regex: id=.*"

This get ALL the freaking Id's on the page.

I've tried using regexr but it's not giving me any results. Any ideas on how I can get this to only show me:


id="password"
 
Back
Top