Project

General

Profile

Actions

Backport #2508

closed

The {n} repetition notation issue in Regexp

Added by katz (katz bo) over 14 years ago. Updated almost 5 years ago.

Status:
Closed
[ruby-core:27247]

Description

=begin
There seems to be a bug in Ruby 1.9 regarding Regular Expression:

/(io){1}x/ =~ 'ioiox' # => 2 #fine
/(io){2}x/ =~ 'ioiox' # => nil #should be 0
/(io){2,2}x/ =~ 'ioiox'# => nil #should be 0
#below are correct
/(?:io){2}x/ =~ 'ioiox' # => 0
/(io){2}/ =~ 'ioiox' # => 0
/(io){2,}x/ =~ 'ioiox' # => 0
/(io){,2}x/ =~ 'ioiox' # => 0
=end

Actions

Also available in: Atom PDF

Like0
Like0Like0Like0Like0Like0