Use REGEXP_INSTR to locate the starting position of tokens like PO:

SELECT REGEXP_INSTR(REPLACE('INV#8674767JSDEPOSIT PO12345678','#',''), 'PO') AS pos
FROM dual;

This gives the exact index of where PO occurs, useful when dynamically slicing strings.