I havn't tried it yet, i'm still fiddling with the expressions. How would I go about doing the same for multiple question marks? When I put a ? in there, it tells me that there is something wrong with my expression.
Here is what I have in the Regular Expression part:
Code:
Return(array(
'/!{3,}/' => '!!!',
'/?{3,}/' => '???'
));
I would also like to limit the signs to just one. Would I just change the code to:
Code:
Return(array(
'/!{1,}/' => '!',
'/?{1,}/' => '?'
));