Bug #7533
closedOniguruma hates the letter 's' :(
Description
MRI 2.0.0dev (2012-12-08), MRI 1.9.3-p327, Rubinius f76d3f67, JRuby 1.7.1 (1.9.3)
"s.net" =~ /\A[^\W_]+([-.][^\W_]+).[a-z]{2,6}.?\Z/i
=> nil
"t.net" =~ /\A[^\W_]+([-.][^\W_]+).[a-z]{2,6}.?\Z/i
=> 0
"s.net" =~ /\A[^\W_]+([-.][^\W_]+)*.[a-z]{2,6}.?\Z/
=> 0
MRI 1.8.7-p371
$KCODE
=> "NONE"
"s.net" =~ /\A[^\W_]+([-.][^\W_]+).[a-z]{2,6}.?\Z/i
=> 0
$KCODE = 'UTF8'
=> "UTF8"
"s.net" =~ /\A[^\W_]+([-.][^\W_]+).[a-z]{2,6}.?\Z/i
=> 0
Rubinius f76d3f67, JRuby 1.7.1 (1.8.7)
$KCODE
=> "NONE"
"s.net" =~ /\A[^\W_]+([-.][^\W_]+).[a-z]{2,6}.?\Z/i
=> 0
$KCODE = 'UTF8'
=> "UTF8"
"s.net" =~ /\A[^\W_]+([-.][^\W_]+).[a-z]{2,6}.?\Z/i
=> nil
"t.net" =~ /\A[^\W_]+([-.][^\W_]+).[a-z]{2,6}.?\Z/i
=> 0
"s.net" =~ /\A[^\W_]+([-.][^\W_]+).[a-z]{2,6}.?\Z/
=> 0
Updated by usa (Usaku NAKAMURA) almost 12 years ago
- Category set to core
- Status changed from Open to Assigned
- Assignee set to naruse (Yui NARUSE)
- Target version set to 2.0.0
Updated by naruse (Yui NARUSE) almost 12 years ago
- Status changed from Assigned to Closed
Duplicated with #4044