D
Daniel DeLorme
I'd greatly appreciate if anyone could explain what's up with this:
$KCODE='u'
That has to be a bug, right?
Maybe this is a good opportunity to start looking at oniguruma. Is
anyone aware of backward compatibility issues when going from the
regular Regexp to oniguruma?
Daniel
$KCODE='u'
=> nil"Ã " =~ /Ã /i => 0
"Ã " =~ /[Ã ]/i => 0
"Ä" =~ /Ä/i => 0
"Ä" =~ /[Ä]/i
That has to be a bug, right?
Maybe this is a good opportunity to start looking at oniguruma. Is
anyone aware of backward compatibility issues when going from the
regular Regexp to oniguruma?
Daniel