Skip to content

Latest commit

 

History

History
22 lines (13 loc) · 462 Bytes

README.md

File metadata and controls

22 lines (13 loc) · 462 Bytes

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"))