From: Iain Barnett on
I see there is a way in Ruby 1.9.1 to switch to the old regex library from the current Oniguruma library. Is it possible to switch to any others, such as PCRE?


Iain
From: Roger Pack on
Iain Barnett wrote:
> I see there is a way in Ruby 1.9.1 to switch to the old regex library
> from the current Oniguruma library. Is it possible to switch to any
> others, such as PCRE?

http://en.wikibooks.org/wiki/Ruby_Programming/Reference/Objects/Regexp#Alternative_Regular_Expression_Libraries

might help.
-r
--
Posted via http://www.ruby-forum.com/.

From: Iain Barnett on

On 9 Jul 2010, at 18:58, Roger Pack wrote:

> Iain Barnett wrote:
>> I see there is a way in Ruby 1.9.1 to switch to the old regex library
>> from the current Oniguruma library. Is it possible to switch to any
>> others, such as PCRE?
>
> http://en.wikibooks.org/wiki/Ruby_Programming/Reference/Objects/Regexp#Alternative_Regular_Expression_Libraries
>
> might help.
> -r
> --
> Posted via http://www.ruby-forum.com/.
>

Thanks, I'll give that a look.

Iain