X7ROOT File Manager
Current Path:
/opt/alt/ruby32/share/ruby/csv
opt
/
alt
/
ruby32
/
share
/
ruby
/
csv
/
??
..
??
core_ext
??
delete_suffix.rb
(374 B)
??
fields_converter.rb
(2.56 KB)
??
input_record_separator.rb
(277 B)
??
match_p.rb
(377 B)
??
parser.rb
(36.7 KB)
??
row.rb
(24.19 KB)
??
table.rb
(37.27 KB)
??
version.rb
(107 B)
??
writer.rb
(5.87 KB)
Editing: 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
Upload File
Create Folder