Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: JRuby 1.7.0.RC1
-
Fix Version/s: JRuby 1.7.0.RC2
-
Component/s: Parser
-
Labels:None
-
Number of attachments :
s= '一000000' # first char is japanese for 'one' and uses 3 bytes in utf-8
re = /0+/
m = re.match s, 6 # m[0] => '000' should be '0'
m = re.match s, 7 # => #<MatchData "00"> should be nil