Jump to content

Why isn't this Regex capturing everything between the <body> tags?


MySQL_Narb

Recommended Posts

1. The content you are matching against doesn't have a closing body tag

 

2. You need the 's' parameter to tell the expression to traverse multiple lines - otherwise it looks for a match on single lines only

 

The page you are using doesn't allow you to add that flag. Try a different one (e.g. http://regex101.com/) or test it yourself.

Link to comment
Share on other sites

 

  • Abusing regexes to write a wacky HTML parser is crap.
  • Where's the closing tag?
  • That site has no flag for making "." match newlines. At least it's not documented.

 

 

 

1. The content you are matching against doesn't have a closing body tag

 

2. You need the 's' parameter to tell the expression to traverse multiple lines - otherwise it looks for a match on single lines only

 

The page you are using doesn't allow you to add that flag. Try a different one (e.g. http://regex101.com/) or test it yourself.

 

Sorry, somehow the HTML I copied in must have gotten cutoff. Even when there is a closing tag, it does not get a match.

 

And I'm actually doing this in JavaScript, and I don't think it has an HTML parser like PHP that I know of. This was the only REGEX specific section I saw, so I just posted it here.

 

And I'll look for the "s" parameter, but I thought that was basically "m"

Link to comment
Share on other sites

In javavscrpt there is no s flag so the dot includes newlines characters. Insead you need to use [^] to match any character not a dot

 

Edit: Working example http://regexr.com/38n74

 

 

 

And I'm actually doing this in JavaScript, and I don't think it has an HTML parser like PHP that I know of.

Umm, the DOM?

body = document.getElementByTagName('body');
alert(body[0].innerHTML);
Edited by Ch0cu3r
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.