Open Zen0x7 opened 5 months ago
POC of API
#include <regexql>
bool matched = regexql::test("there are groups of two numbers separated by comma", "33,34,35");
use RegexQL;
$matched = RegexQL::test("there are groups of two numbers separated by comma", "33,34,35")
$matchs = RegexQL::match("there are numbers", "33,34,35")
dd($matchs)
// [ 33, 34, 35 ]
The project requires run fast with a small number of allocations, ideally, with zero-copies.
Also must be platform independant and able to be compile in different CPU architectures.
We need to build a stable API in order to extends the usages via library, SDK's or binaries.