Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i am trying to replace string that is matched see example bellow

<?php
    $str="this is going to bold [[this]]";
    echo preg_replace("/[[(.*)]]+/i","<b>$1</b>",$str);
?>

So the output will look like this

this is going to bold this

Edit:

<?php
    $str="bhai bhai *that* -wow- perfect";
    $find[0]="/*(.+)*/i";
    $find[1]="/-(.+)-/i";
    $rep[0]="<b>$1</b>";
    $rep[1]="<i>$1</i>";
    echo preg_replace($find,$rep,$str);
?>

This is showing warning

Warning: preg_replace() [function.preg-replace]: Compilation failed: nothing to repeat at offset 0 in C:\xampp\htdocs\page.php on line 7

share|improve this question
[] are special characters in PCRE and thus must be escaped. Also, you might want to use a non-greedy group. (.*?) otherwise you're going to run into some fun bolding issues down the road. – Corbin Apr 24 '12 at 8:47
i changed to this ...echo preg_replace("/[[+(.*)+]]/i","<b>$1</b>",$str);....but i am seeing this output..........this is going to bold – Web Addicted Apr 24 '12 at 8:49
@user1331534 Check my answer. – Dr.Kameleon Apr 24 '12 at 8:50

3 Answers

up vote 5 down vote accepted

Try this :

<?php
    $str="this is going to bold [[this]]";
    echo preg_replace("/\[\[(.+)\]\]+/i","<b>$1</b>",$str);
?>

Output :

this is going to bold this


Hint :

[ and ] characters are considered special, so you'll have to escape them (like : \[, \]).


UPDATE :


<?php
    $str="bhai bhai *that* -wow- perfect";
    $find[0]="/\*(.+)\*/i";
    $find[1]="/\-(.+)\-/i";
    $rep[0]="<b>$1</b>";
    $rep[1]="<i>$1</i>";
    echo preg_replace($find,$rep,$str);
?>
share|improve this answer
what is difference between (.+) and (.*) ? – Web Addicted Apr 24 '12 at 8:51
2  
@user1331534 + indicates that the pattern is to be matched ONE-or-more times, while * indicates that it is to be matched ZERO-or-more times (which means that it may not match anything). – Dr.Kameleon Apr 24 '12 at 8:53
1  
@user1331534 Example (from Wikipedia) : ab*c matches "ac", "abc", "abbc", "abbbc", and so on. ab+c matches "abc", "abbc", "abbbc", and so on, but not "ac" – Dr.Kameleon Apr 24 '12 at 8:54
hey see the edit – Web Addicted Apr 24 '12 at 9:02
on question i want to improve this – Web Addicted Apr 24 '12 at 9:04
show 1 more comment

Try this on for size

<?php
    $str="this is going to bold [[this]]";
    echo preg_replace("/(?:\[\[)(.*?)(?:\]\])/i","<b>$1</b>",$str);
?>
share|improve this answer

You need to escape the square brackets in your regular expression. The final expression should look something like this:

echo preg_replace('/\[\[(.*?)\]\]/im', '<b>$1</b>', $str);

The square brackets are special characters used for defining a set of characters and thus must be escaped if you wish to match them literally.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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