查看网站首页
查看网站首页
查看 sitemap.xml
✏️ 正在编辑: match_p.rb
路径:
/opt/alt/ruby30/share/ruby/csv/match_p.rb
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
# frozen_string_literal: true # This provides String#match? and Regexp#match? for Ruby 2.3. unless String.method_defined?(:match?) class CSV module MatchP refine String do def match?(pattern) self =~ pattern end end refine Regexp do def match?(string) self =~ string end end end end end
💾 保存文件
← 返回文件管理器