X7ROOT File Manager
Current Path:
/opt/alt/ruby26/lib64/ruby/2.6.0/csv
opt
/
alt
/
ruby26
/
lib64
/
ruby
/
2.6.0
/
csv
/
ðŸ“
..
ðŸ“
core_ext
📄
delete_suffix.rb
(381 B)
📄
fields_converter.rb
(2.08 KB)
📄
match_p.rb
(377 B)
📄
parser.rb
(28.94 KB)
📄
row.rb
(11.14 KB)
📄
table.rb
(12.72 KB)
📄
version.rb
(107 B)
📄
writer.rb
(4.13 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