I have a text in some file like
<Variable name="URL" value="http://url:port"/>
I want the url in the value tag( http://url:port
).
The command and regex I'm using are
FindStr /R /C:"\"URL\" *value=*\"*\"" <filename>
The above regex matches the line in the file but fails to extract that url string
any suggestion?