1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
# mruby-onig-regexp
[](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 <kentkt AT csc DOT jp>
Oniguruma ---- (C) K.Kosako <sndgk393 AT ybb DOT ne DOT jp>
## Author
Yasuhiro Matsumoto (a.k.a mattn)
|