I have strings like these -
CRS|R|S||3.0|25|W||U||||0||ECN|211|MACROECONOMIC PRINCIPLES
CRS|R|S||3.0|25|F||U||||0||CIS|105|SURVEY COMPUTER INFO SYSTEMS
CRS|R|S||3.0|25|A||U||||12||CSR|207|AUTOMOBILE POLICY ADJUSTMENT
The format of these will always be like this. I want to remove any numbers just before ECN, CIS or CSR above. So after processing, my output should look like this -
CRS|R|S||3.0|25|W||U||||||ECN|211|MACROECONOMIC PRINCIPLES
CRS|R|S||3.0|25|F||U||||||CIS|105|SURVEY COMPUTER INFO SYSTEMS
CRS|R|S||3.0|25|A||U||||||CSR|207|AUTOMOBILE POLICY ADJUSTMENT
0 and 12 are removed from the strings above.
Please note - ECN, CIS or CSR are just for example. It can be anything. I want to remove the numbers before these 3 letters.
Please help me out !