function _strip_punctuation in Bibliography Module 7
Same name and namespace in other branches
- 6.2 includes/biblio.util.inc \_strip_punctuation()
- 7.2 includes/biblio.util.inc \_strip_punctuation()
1 call to _strip_punctuation()
- biblio_normalize_title in includes/
biblio.util.inc
File
- includes/
biblio.util.inc, line 249
Code
function _strip_punctuation($text) {
return preg_replace("/[[:punct:]]/", '', $text);
}