Jump to content

following new line


cosmicsea

Recommended Posts

I am having alot of trouble trying to figure out how to follow a new line, trying to grab some text. can somebody help me?

 

<h2 style="color: #383737; margin-bottom: 3px; text-transform: capitalize;">Details</h2><br/>

<h2>input</h2><br/>

 

Lets say im trying to grab the word "input" in that code. I cant just do /<h2\>(.*)\<\/h2\>\<br\/\>/ to grab because the html file has several instances of <h2>whatever text</h2><br/> so i have to start at that line above. How can i do this? I have tried for like 2 hours. I have been trying to start it at Details.

Link to comment
Share on other sites

$str = '            <h2 style="color: #383737; margin-bottom: 3px; text-transform: capitalize;">Details</h2><br/>
            <h2>input</h2><br/>';
preg_match('~>Details</h2><br/>\s*<h2>(.*?)</h2><br/>~is', $str, $match);
echo $match[1];

\s* matches zero or more whitespace characters (including line breaks).

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.