Regexp class with libc regex (POSIX Regex) backend
- add conf.gem line to
build_config.rb
MRuby::Build.new do |conf|
# ... (snip) ...
conf.gem github: 'udzura/mruby-posix-regexp'
endb = "xxx".gsub /x/, "y"
#=> "yyy"
"foo bar buz".scan /\w+/
#=> ["foo", "bar", "buz"]under the MIT License:
- see LICENSE file
- Referred from mruby-pure-regexp in many Ruby methods and basic test cases.