Re: [MacRuby-devel] Regexp possible bug

2009-07-02 Thread Renzo Borgatti
Cool, thanks. Renzo On Thu, Jul 2, 2009 at 10:56 PM, Matt Aimonetti wrote: > if you are happy with the output I showed you, let's consider it fixed in > 0.5 ;) > > - Matt > > > On Thu, Jul 2, 2009 at 1:35 PM, Renzo Borgatti wrote: > >> I forgot to mention

Re: [MacRuby-devel] Regexp possible bug

2009-07-02 Thread Renzo Borgatti
macruby -e 'puts ("aA0ƒz" =~ /z/).inspect' > 5 > > > - Matt > > > On Thu, Jul 2, 2009 at 3:45 AM, Renzo Borgatti wrote: > >> Sorry, the AT was escaped, another similar example is: >> puts ("aA0ƒz" =~ /\x41/).inspect >> >> s

Re: [MacRuby-devel] Regexp possible bug

2009-07-02 Thread Renzo Borgatti
Sorry, the AT was escaped, another similar example is: puts ("aA0ƒz" =~ /\x41/).inspect searching for the uppercase A. ___ MacRuby-devel mailing list [email protected] http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel

[MacRuby-devel] Regexp possible bug

2009-07-02 Thread Renzo Borgatti
Hi, If you create a file simple.rb and put the following line inside: puts ("a...@0ƒz" =~ /\x40/).inspect and then run with: macruby simple.rb I have the following: $ macruby simple.rb simple.rb:1:in `': regexp preprocess failed: too short escaped multibyte character (ArgumentError) while it ru