Hi guys i am trying to figure out a simple regEx from the given text below:
<b>Name:</b> Photomatix.Pro.v4.0.64bit-FOSI<br />
i basically want to output and store only Photomatix.Pro.v4.0.64bit-FOSI i.e. the actual value thats inside the but when i define it like this:
private static final String REG_NAME = "<b>Name:</b>(.*)<br />";
It actually stores and outputs the whole <b>Name:</b> Photomatix.Pro.v4.0.64bit-FOSI<br />
Any ideas on how i can just extract the value given from the above xml text? cheers in advance