Beta5 - PL/SQL Dev freeze with regular expression search

koja

Member³
Marco,

When searching for "[ ]*\r (procedure|function)"
with replace " --\r$1"

PL/SQL Developer freezes and doesn't get responsive anymore. I tried several alternatives, but all result in freeze, so it got a bit time consuming. Goal was to separate procedures and functions in a rather large package(75kb) with --.

Is there is an option for start-/end- of line marks. (often ^ and $ respectively)?

Kind regards,

Jan
 
It seems to be caused by this expression:

[ ]

If you want to search for a whitespace character, use \s instead.

We'll fix the freeze problem.
 
Last edited:
Back
Top