I want a regular expression that can match
<FONT FACE=\"Verdana\" SIZE=\"12\"> My Name is xyz </FONT> or
<LI><FONT FACE=\"Verdana\" SIZE=\"12\"> My Name is xyz </FONT></LI> and it should not be greedy
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.
|
Three questions in as many hours. Must be a record of some sorts. For the sake of humanity, don't use regular expressions to parse XML! |
|||||||||||||
|
|
Why not use a Java XML parser? |
|||||||||
|
|
the beginning of the answer to this exact question with over 4300 up votes. If you don't understand this and insist on ignoring this advice then you probably should not be programming. What happens when FACE and SIZE are in opposite order? |
|||||||||
|
|
I suposed to use: <[^/][^>]>([^<])</[^>]*> |
|||
|
|
.*will match those 2 strings completely. And many other strings as well. If you don't want to match the other strings, then say what those strings are. It always helps to be specific in saying what you want to match and what you don't want to match in regex questions. – polygenelubricants Aug 17 '10 at 6:15