Sha256: aa20d9540779fdf383eb4492350b053937a5d4d690bca68117f0b729a7ea475d
Contents?: true
Size: 667 Bytes
Versions: 26
Compression:
Stored size: 667 Bytes
Contents
class String # Like #scan but returns MatchData ($~) rather # then matched string ($&). # def mscan(re) #:yield: if block_given? scan(re) { yield($~) } else m = [] scan(re) { m << $~ } m end end end # _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ |_ # |_|\___||___/\__| # =begin test require 'test/unit' class TCString < Test::Unit::TestCase def test_mscan r = 'abc,def,gh'.mscan(/[,]/) assert( r.all?{ |md| MatchData === md } ) assert_equal( 2, r.to_a.length ) assert_equal( ',', r[0][0] ) assert_equal( ',', r[1][0] ) end end =end
Version data entries
26 entries across 26 versions & 1 rubygems