Is there a more modern regexp handler for Open Object Rexx

Posted by Brent.Longborough on Stack Overflow See other posts from Stack Overflow or by Brent.Longborough
Published on 2010-04-16T21:51:39Z Indexed on 2010/04/16 21:53 UTC
Read the original article Hit count: 206

Filed under:
|
|

The regular expression class (rxregexp.dll) that comes with ooRexx (I'm on 4.0.0) is relatively low on function compared, say, with Python's re module (even at 2.5.2).

It appears to have no assertions, no facilities for group extraction, or for substitution. Greedy or lazy matching is a global pattern option, rather than flagged by an additional "?". Basically, a pre-PCRE regular expression engine.

Does anyone know if anything with more up-to-date function is available?

© Stack Overflow or respective owner

Related posts about rexx

Related posts about regexp