I want to realize a Zend_Filter that return the string replacing banks with underscore and remove all the characters not allowed in a regular expression.

Is that possible?

link|improve this question

55% accept rate
feedback

1 Answer

up vote 2 down vote accepted
$filter = new Zend_Filter_PregReplace();
$filter->setMatchPattern(array(' ', '/regexForCaracterNotAllowed/'))
       ->setReplacement(array('_', ''));

This is how to use the Zend_Filter_PregReplace. What are the not allowed caracters?

link|improve this answer
+1 nice! This was very helpful, you saved me 5 - 10 minutes of searching which I didn't feel like doing. – mmmshuddup Feb 5 at 1:33
feedback

Your Answer

 
or
required, but never shown

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