Skip to main content
deleted 23 characters in body; edited title
Source Link
Amal
  • 76.8k
  • 18
  • 133
  • 154

Regular Expression for http content Getting the value of an input tag with a specific ID using regex

I have following html content part, and I want to get the value -7326630261683062897:1196341531039871985

-7326630261683062897:1196341531039871985

from all http content. There is only one unique point that is id "javax.faces.ViewState" apart from similar statementsjavax.faces.ViewState.

How can I get the value? whatWhat kind of regex do I have to use?

<input type="hidden" name="javax.faces.ViewState"
  id="javax.faces.ViewState" 
value="-7326630261683062897:1196341531039871985" autocomplete="off" />

Regular Expression for http content

I have following html content part, and I want to get the value -7326630261683062897:1196341531039871985 from all http content. There is only one unique point that is id "javax.faces.ViewState" apart from similar statements.

How can I get the value? what kind of regex I have to use?

<input type="hidden" name="javax.faces.ViewState"
  id="javax.faces.ViewState"
value="-7326630261683062897:1196341531039871985" autocomplete="off" />

Getting the value of an input tag with a specific ID using regex

I have following html content part, and I want to get the value

-7326630261683062897:1196341531039871985

from all http content. There is only one unique point that is id javax.faces.ViewState.

How can I get the value? What kind of regex do I have to use?

<input type="hidden" name="javax.faces.ViewState" id="javax.faces.ViewState" 
value="-7326630261683062897:1196341531039871985" autocomplete="off" />
Source Link
Ahmet Karakaya
  • 10.2k
  • 24
  • 95
  • 147

Regular Expression for http content

I have following html content part, and I want to get the value -7326630261683062897:1196341531039871985 from all http content. There is only one unique point that is id "javax.faces.ViewState" apart from similar statements.

How can I get the value? what kind of regex I have to use?

<input type="hidden" name="javax.faces.ViewState"
 id="javax.faces.ViewState"
value="-7326630261683062897:1196341531039871985" autocomplete="off" />