I just want to replace the following string:

This is my first sentence.
.:.
This is my second sentence.
.:.
This is my third sentence.
.:.

The output should be like:

This is my first sentence.
1
This is my second sentence.
2
This is my third sentence.
3

How can I do it in more efficient and easy way?

link|improve this question

76% accept rate
2  
Take a look here preg_replace_callback. Can you get the idea? – David Rodrigues Nov 28 '11 at 16:19
No i can't get the idea – fawad Nov 28 '11 at 16:28
feedback

1 Answer

echo preg_replace_callback("/@/",
    function(){static $count=0; return ++$count;},
    "A@B@C@");
link|improve this answer
All sentences are stored in $string. Should i replace "A@B@C@" with $string? – fawad Nov 28 '11 at 16:28
Yep, and the "/@/" with the actual pattern you are replacing. – Wrikken Nov 28 '11 at 16:30
I have tried it but it is not working. preg_replace_callback(".:.", function(){static $count=0; return ++$count;}, $Product_description); – fawad Nov 28 '11 at 16:36
My exact pattern is .:. – fawad Nov 28 '11 at 16:37
That would be a pattern with . as delimiters.... and matching all literal :'s.... I doubt that is what you want. If you are having trouble creating the proper regex, I suggest posing it as a new question. – Wrikken Nov 29 '11 at 10:22
feedback

Your Answer

 
or
required, but never shown

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