Github [cracked] — Lexluthor
You could also try searching for specific topics like:
$lexer->lex("hello 42 world"); // Output: // Word: hello // Number: 42 // Word: world lexluthor github
$lexer->rule('/\d+/', function(Token $token) echo "Number: $token->getValue()\n"; ); You could also try searching for specific topics