I have the following string stored in a variable in PHP.
The words inside the quotes should be in '''bold'''. Like '''this''' and '''that'''
Here triple quotes ''' are used to represent that the word should be shown bold.
What is the most efficient way to replace this with the <strong> tag?
preg_replacewill help you. I am not good at regular expressions !! :) – Pankit Kapadia Dec 14 '12 at 7:31