Jump to content

Pulling innerhtml data from html code


jmahdi

Recommended Posts

Regular expressions.

 

<?php

$str = '<b><font color=green>Get me out please </font>.</b>';

$pattern = '/<font[^>.]*>(.*)<\/font>/i';

if (preg_match($pattern, $str, $matches)) {
echo $matches[1]; // Get me out please 
}

 

Also, don't bump your threads after 2 hours.

17. Users should not "bump" topics that are still on the first page of the forums. If you bump, you must provide additional information. If you resort to bumping, chances are your question needs to be re-thought and re-described (see Eric Raymond's "How To Ask Questions The Smart Way")
Link to comment
Share on other sites

Regular expressions.

 

<?php

$str = '<b><font color=green>Get me out please </font>.</b>';

$pattern = '/<font[^>.]*>(.*)<\/font>/i';

if (preg_match($pattern, $str, $matches)) {
echo $matches[1]; // Get me out please 
}

 

 

what if its more than one font tag like:

<b><font color=green>Get me out please </font></b><a><font color=green>Get me out please </font></a>

 

how to utilise forforeach or for loops and can i still stick to the same regular expression....thanks

thanks

Link to comment
Share on other sites

Disregard the pattern in my first post, this one will work a lot better:

$str = '<b><font color=green>Get me out please </font></b><a><font color=green>Get me out please </font></a>';

$pattern = '/<font.*?>(.*?)<\/font>/i';

if (preg_match_all($pattern, $str, $matches)) {
print_r($matches[1]);
/*
Array	
(
	[0] => Get me out please
	[1] => Get me out please
)
*/
}

 

Using preg_match_all will grab values in multiple font tags.

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.