public function testDelimiter()
 {
     $regEx = $this->r->startOfInput()->exactly(3)->digits()->exactly(1)->of("/")->exactly(2)->letters()->endOfInput()->getRegExp();
     $this->assertTrue($regEx->matches("123/ab"));
 }