skip() public method

Skip a given set of characters.
public skip ( string $string, boolean $copy = false )
$string string
$copy boolean
Example #1
0
 public function testSkipCopy()
 {
     $content = new Content('abcdefghijkl');
     $this->assertEquals('abcd', $content->skip('abcd', true));
 }