Of course, you don't need to use PRXMATCH
Search 1
if string = 'E45' then ... ;
Search 2
if string =: 'E45' then ... ;
The two searches you want to search for can be collapsed into the code I provide for search 2, and search 1 is not needed.
... View more