Beispiel #1
0
 public function testReplaceByRegex()
 {
     $text = new Text('Replace me');
     $search = new Regex('#me#');
     $replace = new Text('yourself');
     $this->assertEquals('Replace yourself', $text->replaceByRegex($search, $replace));
 }