class GLib::Regex
Public Class Methods
Source
# File lib/glib2/regex.rb, line 20 def match?(pattern, string, options={}) new(pattern, options).match(string, options).matches? end
Source
# File lib/glib2/regex.rb, line 24 def split(pattern, string, options={}) new(pattern, options).split(string, options) end