An open API service indexing awesome lists of open source software.

https://github.com/ess/mruby-rust-regexp


https://github.com/ess/mruby-rust-regexp

Last synced: 10 months ago
JSON representation

Awesome Lists containing this project

README

          

# mruby-onig-regexp

[![Build Status](https://travis-ci.org/mattn/mruby-onig-regexp.svg)](https://travis-ci.org/mattn/mruby-onig-regexp)

## install by mrbgems
```ruby
MRuby::Build.new do |conf|

# ... (snip) ...

conf.gem :github => 'mattn/mruby-onig-regexp'
end
```

## Example
```ruby

def matchstr(str)
reg = Regexp.compile("abc")

if reg =~ str then
p "match"
else
p "not match"
end
end

matchstr("abcdef") # => match
matchstr("ghijkl") # => not match
matchstr("xyzabc") # => match
```

## License

MIT

### License of Onigmo
BSD licensed.

Onigmo (Oniguruma-mod) -- (C) K.Takata
Oniguruma ---- (C) K.Kosako

## Author

Yasuhiro Matsumoto (a.k.a mattn)