hexydec/tokenise

A program for performing lexical analysis, written in PHP

1.0.1 2022-09-15 19:52 UTC

This package is auto-updated.

Last update: 2024-04-08 21:52:30 UTC


README

A program for performing lexical analysis, written in PHP. Designed to supply tokens to a parser in order to analyse the syntax of programming languages.

Licence Status: Stable Tests Status Code Coverage

Description

Using an array of regular expressions, tokens are extracted from the input code in sequence and upon request. Previous tokens can also be re-requested, and custom regular expressions can also be used to retrieve the next token.

Currently used in my other projects:

Usage

Basic usage within a program:

$obj = new \hexydec\tokens\tokenise($tokens, $value);

while (($token = $obj->next()) !== null) {
	// parse each token
}

API

For more detailed usage documentation, read the API document.

Support

Tokenise supports PHP version 8.0+.

Contributing

If you find an issue with tokenise, please create an issue in the tracker.

If you wish to fix an issue yourself, please fork the code, fix the issue, then create a pull request, and I will evaluate your submission.

Licence

The MIT License (MIT). Please see License File for more information.