SwadicalRag / tiny-regex-lua

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

tiny-regex-lua

tiny-regex-c compiled to lua via wasm2lua

Building

make all

Make sure you have wasm2lua and wasi-sdk installed

Usage

local module = dofile("re.lua")

module.init()

local pat = module.bindings.global.re_compile("[0-9]+test")
print(module.bindings.global.re_matchp(pat,"the Nice test"))
print(module.bindings.global.re_matchp(pat,"the Very Nice 420test"))

About


Languages

Language:C 95.1%Language:Makefile 3.3%Language:Lua 1.6%