in reply to JEdit's RE Tester. (boo)
in thread Regular Expression GUI?

Very true. However, I'd imagine the plugin will be modified in the future to use the JDK 1.4 built-in java.util.regex instead of the external gnu.regexp library. The built-in library includes (according to the 4th ed. of Java in a Nutshell):

(?:...) (?=...) (?!...) (?<flags>:...) \G \b \B

Since it's open-source, I'd imagine this would get done sooner rather than later :-)

Chris
M-x auto-bs-mode

Replies are listed 'Best First'.
OT: Re: Re: jEdit's RE Tester
by mdillon (Priest) on Apr 10, 2002 at 16:01 UTC
    jEdit requires only JDK 1.3, so the likelihood of it switching from gnu.regexp to java.util.regex in the near term is very small. Even just switching the plugin is unlikely, since very few plugins are JDK 1.4 only (WheelMouse is the only one IIRC). However, I believe that for jEdit 4.0final (to be released within days) Slava Pestov has either upgraded to a new gnu.regexp that fixes the .* problems or he has patched jEdit's copy of gnu.regexp to fix them himself; regardless, I recall seeing a changelog entry recently noting that some .*-related bugs have been addressed.