hello!
could somebody please help me to build a regexp to strip some attributes
from html code?
i'd like to remove all class="" attributes from html, but the example below
seems not match
i don't know what i'm doing wrong, this simply doesn't work!
http://www.anywhere.com"; class="link">';
echo "i
> I have search around on google/php.net to try and find a way to remove
> , everything above , and everything below it in a html
page.
FYI on the two methods I suggested:
preg_match("/(.*)<\/body>/i",$html_text,$matches);
eregi("(.*)",$html_text,$matches);
Preg vs. Ereg
name
Or...
preg_match("/(.*)<\/body>/i",$html_text,$matches);
---John Holmes...
> -Original Message-
> From: JJ Harrison [mailto:[EMAIL PROTECTED]]
> Sent: Saturday, July 27, 2002 9:41 AM
> To: [EMAIL PROTECTED]
> Subject: [PHP] removing html...
>
> Hi
:41 AM
> To: [EMAIL PROTECTED]
> Subject: [PHP] removing html...
>
> Hi,
>
> I have search around on google/php.net to try and find a way to remove
> , everything above , and everything below it in a html
page.
>
> eg.
>
>
>
> test
>
>
> Blah B
Hi,
I have search around on google/php.net to try and find a way to remove
, everything above , and everything below it in a html page.
eg.
test
Blah Blah Blah
would become: Blah Blah Blah
I know how to use php to convert html to pure text etc but I don't know how
to remove the unwanted
From: "Toke Herkild" <[EMAIL PROTECTED]>
> What if I want to replace all html codes from a string ?
> I've tried using :
>
> $myString = preg_replace('/<*>/, '', $myString);
> but that deletes all string... ( or everything from first '<' ) ...
>
> Toke Herkild...
>
>
Try striptags()
http:
What if I want to replace all html codes from a string ?
I've tried using :
$myString = preg_replace('/<*>/, '', $myString);
but that deletes all string... ( or everything from first '<' ) ...
Toke Herkild...
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL
7 matches
Mail list logo