Regular expressions in Search bar vs Find and Replace

Sample code, in a Test window:

Code:
DECLARE
    var1 INTEGER;
    var12 INTEGER;
    var123 INTEGER;
BEGIN
    NULL;
END;

If I bring up the Find & Replace tool (Control-F), enter the search expression as var[0-9]{2,} and check "Regular expressions" it finds "var12" and "var123".

If I try the same regular expression search in the Search bar, clicking the binocular tool navigates to "var12" but doesn't highlight anything, and it doesn't find "var123".

This goes for any regular expression, e.g. [0-9].
 
Back
Top