Please help me in the following pattern
Current text
ALPHA;111,'BI_209' ALPHA;222,'BI_213' ALPHA;AAA,'BI_209' ALPHA;FFF,'BI_209' ALPHA;123,'BI_220' Intended status after first round of find & replace in Notepad ++
BI_209;111,'BI_209' ALPHA;222,'BI_213' BI_209;AAA,'BI_209' BI_209;FFF,'BI_209' ALPHA;123,'BI_220' As seen above, in the first round - I intend to search a specific pattern * ALPHA* BI_209* and replace with *BI_209*BI_209*.
Please help me with the correct regex in FIND as as well as REPLACE fields to achieve what I plan to get. Note there a varying texts like ';111,' ..... ';222,' .... ';AAA,' in between which shouldn't get changed or affected.
If I get a pattern for find & replace, it would be help in a second (and further) round(s) of multiple find & replace - to achieve this output
BI_209;111,'BI_209' BI_213;222,'BI_213' BI_209;AAA,'BI_209' BI_209;FFF,'BI_209' BI_220;123,'BI_220'