Answer the question
In order to leave comments, you need to log in
How to write some regular expression in Java?
There is this line:
String line = "<p class=MsoNormal align=center style='margin-bottom:0cm;margin-bottom:.0001pt;text-align:center;line-height:normal'><img width=165 height=128 src=image001.jpg/></p>"
<img ..(то что у нас внутри тега не важно).. />
<img ..(то что у нас внутри тега не важно)../></p>
// Так же у нас этот тег может не иметь в конце косой черты, т.е <img ..(то что у нас внутри тега не важно)..>
Pattern p2 = Pattern.compile("<img.+((\\/>)|>)");
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question