My plan is to update this entry as do other regexps in my day to day work life.
First off feel free to check the Use: Regular Expression button in the Find and Replace Dialog

(1) IDL definition into PL/SQL
To replace:
LINEITEMFLAG_****** = 1, //bit 1
with
insert into lineitem_flags values ('1', 'LINEITEMFLAG_****** Description', 'LINEITEMFLAG_******');
regexp search for: {LINEITEMFLAG_[A-Z,_]*}:b*=:b*{.*},.*$
regexp replace with: insert into lineitem_flags values ('\2', '\1 Description', '\1');
Heello mate nice blog
ReplyDelete