How to extract data from this text using regex?

reubMypepiefe

New Member
I am trying to converts a html fragment like this \[code\]<UL><P><LI> <A HREF=http://stackoverflow.com/bmvc/asd/erer.pdf><EM>Some title</EM></A><BR> abc, C D ;TBC, M I A; AMN, P E and CTD, S C, ABC andUniversity of UYT<LI>......</UL>\[/code\]It is a research paper with title , authors, and some other information. I want to extract this information
  • data between \[code\]<li>till next<li>\[/code\]
  • and from that data I want to extract
  • HREF=http://stackoverflow.com/bmvc/asd/erer.pdf
  • EM>Some title
  • abc, C D ;TBC, M I A; AMN, P E and CTD, S C, ABC and
 
Back
Top