blob: dfc10bfde4ef2989aa7f055318b3f73be2582ba9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# Lua Bindings
This directory contains Lua bindings for bp.
## API
```lua
local bp = require("bp")
local m, i, len = bp.match("like finding a needle in a haystack", '"n" +`e "dle"')
local replaced = bp.match("like finding a needle in a haystack", '"n" +`e "dle"', "cat")
```
|