Jump to content

[SOLVED] i need help in strip some characters from text begining


gratsami

Recommended Posts

I have HTML code and  contain some paragraphs ... and i want to strip the first HTML code from this paragraphs..

example:

 

$text = '<p align="left">Bla Bla Bla Bla Bla </p>
<p align="left">Bla Bla Bla Bla Bla </p>
<p align="left">Bla Bla Bla Bla Bla </p>
<p align="left">Bla Bla Bla Bla Bla </p>';

 

i want this output:

 

Bla Bla Bla Bla Bla </p>
<p align="left">Bla Bla Bla Bla Bla </p>
<p align="left">Bla Bla Bla Bla Bla </p>
<p align="left">Bla Bla Bla Bla Bla </p>

 

i know that function make it

 

substr($text, 16);

 

but if the count of character is increased or decreased ... how to know this count automatically and make substr function ??

could always go simple and do

 

<?php
$text = '<p align="left">Bla Bla Bla Bla Bla </p>
<p align="left">Bla Bla Bla Bla Bla </p>
<p align="left">Bla Bla Bla Bla Bla </p>
<p align="left">Bla Bla Bla Bla Bla </p>';

echo substr($text, strpos($text, '>') + 1);
?>

 

or you could use regexp if this isn't what you intend as it will only remove one html tag (eg. won't remove <p><b>).

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.