vote up 0 vote down star

i want to replace html text that closed by tag

start_ticker code.... end_ticker

i don't success

my code is

$string_html = preg_replace('/<!-- start_ticker -->.*<!-- end_ticker -->/i',"bla bla",$string_html);
flag

4 Answers

vote up 1 vote down check

By default "." doesn't match newlines - you can add the "s" (DOTALL) modifier to change this. I suspect that's your problem.

$string_html = preg_replace('/<!-- start_ticker -->.*<!-- end_ticker -->/is',"bla bla",$string_html);
link|flag
/in replace me every thing and i get empty string – haim evgi Jul 13 at 7:57
I made a typo the first time - should have been /is – Greg Jul 13 at 8:07
If you don't want to replace the comments then combine this with @soulmerge's answer – Greg Jul 13 at 8:08
empty again , sorry – haim evgi Jul 13 at 8:09
Hmm... I don't think there's any way it can give you an empty string - are you sure you haven't made a typo when you print it out? – Greg Jul 13 at 8:15
show 2 more comments
vote up 2 vote down

You can solve that problem even without using regular expressions:

$start = '<!-- start_ticker -->';
$end = '<!-- end_ticker -->';
$replacement = 'blabla';
$posStart = stripos($str, $start);
if ($posStart !== false) {
    $posEnd = stripos($str, $end, $posStart);
    if ($posEnd !== false) {
        $str = substr($str, 0, $posStart) . $replacement . substr($str, $posEnd + strlen($end));
    }
}
link|flag
I recommend this. It should be faster then the PCREs. – bucabay Aug 9 at 22:29
vote up 1 vote down

You need:

$match1 = '<!-- start_ticker -->';
$match2 = '<!-- end_ticker -->';
$replace = 'bla bla';
$string = preg_replace("/$match1(.*?)$match2/is", $match1.$replace.$match2, $string);

Note that (.*?) makes a large difference since it makes the match ungreedy. This is when the pattern will be matched to the largest number of possible permutations of that pattern, rather then the least.

http://www.troubleshooters.com/codecorn/littperl/perlreg.htm#Greedy

Otherwise, you would match from the first to the last clobbering anything in between if there are multiple matches.

link|flag
vote up 1 vote down

I guess you want to keep the start/end tags. Then you need to capture them with brackets:

$string_html = preg_replace('/(<!-- start_ticker -->).*(<!-- end_ticker -->)/i', '$1bla bla$2', $string_html);

Beware though, that regular expressions are not the best choice when it comes to html.

link|flag
get empty string – haim evgi Jul 13 at 8:11
That's not possible. It should at least contain blabla – soulmerge Jul 13 at 8:20

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.