William Robertson
Member³
Sample code, in a Test window:
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].
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].