2021-07-21, 11:24 PM
(This post was last modified: 2021-07-22, 09:04 AM by golden. Edited 3 times in total.)
Example:
Regular Expression:
Replacement:
If a user post like this:
Html out:
So i want any " or ' characters got removed from $1 output.
Is this possible?
Regular Expression:
\[ppp=(.*?)\](.*?)\[/ppp\]
Replacement:
<span title="$1" class="classz">$2</span>
If a user post like this:
[ppp=test "with" title]some text[/ppp]
Html out:
<span title="test "with" title" class="classz">some text</span>
So i want any " or ' characters got removed from $1 output.
Is this possible?