Example #1
0
 public function test_do_strip_special_char__replace()
 {
     $test = 'A page for $13';
     \UString::doStripSpecialChar($test, 'a-zA-Z', '');
     $this->assertEquals('Apagefor', $test);
 }