I have been able to create and Regular Expression that finds all the lines that begin with the following phrases (HDR,SHP,BIL,INS,CNT).
What I need to be able to find is all lines that DO NOT match these. I have tried multiple things and it either still finds one of these or nothing at all.
Thanks in advance
Code:
^((HDR)|(SHP)|(BIL)|(INS)|(CNT))
What I need to be able to find is all lines that DO NOT match these. I have tried multiple things and it either still finds one of these or nothing at all.
Thanks in advance