Issue
How would I convert strings like this:
<span class="it">CONTENT</span>
Into this:
{it}CONTENT{/it}
While keeping CONTENT intact?
Solution
preg_replace('/<span class="it">(.*?)<\/span>/', '{it}$1{/it}', $text)
This is not the most versatile solution, but this works for your code. There is the possibility to have the content of the class attribute as a variable as well, but that won't be too hard to figure out now.
Answered By - Mave Answer Checked By - Timothy Miller (PHPFixing Admin)
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.