Instead of ".*" in your pattern I would recommend you use "[\S\s]*?"
Note that the use of "?" is required to stop at the first enclosing "</p>" in case you have multiple "<p></p>" blocks in your HTML source.
Main Topics
Browse All TopicsI need a regular expression that matches HTML tags which can contain line breaks / carriage returns. This is easy in Perl or PHP because the dot (any) token matches line breaks, but unfortunately it does not in JavaScript. The attached code demonstrates the problem Change the regular expression to make it match the <p> tag and it's contents to win the prize.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Guys, thanks for your efforts so far but I'm afraid neither of these suggestions has worked in this particular example. Using the source code I provided, I substituted the following regular expressions:
<p[^>]*>(.*)\n</p> (from saleek)
<p[^>]*>([\S\s]*?)</p> (from ddrudik)
...but neither of them match the paragraph tag, at least not in the SpiderMonkey JS engine in Firefox 2.
The example I've given is just a simplification the real problem I'm working on which is a script that strips XML tags from text objects in a proprietary format in our web content management system. I have RegexBuddy and the expression I started with works fine until you emulate JavaScript because the dot can't cross line breaks. I've tried a lot of variations and so far drawn a blank.
I'm pretty desperate to get this script working so if I'm increasing the points to 500. Can I suggest saving the code snippet as an HTML file and testing in a browser - if you get the right regular expression in there it will write the matched code back to the screen.
Thanks
-William
DDrudik,
Thank you very much - that's exactly what I was after. The group () in there since because where I will be using this expression is in a script that strips tags - I need to capture the content of the tags and remove the tags themselves. Where I was going wrong is using the RegExp object constructor rather than the inline constructor you have used. I tried the exact same regular expression constructed both ways - your one works, mine doesn't. I'll be accepting your solution with full marks either way, but I'd be very grateful for your thoughts on why one of these statements works when the other doesn't:
var re = /<p[^>]*>([\S\s]*?)<\/p>/i
var re = new RegExp('<p[^>]*>([\S\s]*?)
Thanks,
-William
Business Accounts
Answer for Membership
by: saleekPosted on 2007-12-07 at 03:18:55ID: 20426624
Hi,
Not sure what exactly you need here... but putting the \n (newline) regex will match the beginning of the paragraph.
<p[^>]*>(.*)\n</p>
regards,
KS