I have this flexible search in Oracle:
select UTL_RAW.CAST_TO_VARCHAR2(DBMS_LOB.SUBSTR(p_targetCarts, 4000,1))
from {OrderProposal}
and the result is this:
�srjava.util.ArrayListx��a�Isizexpwt 0000031072x
�srjava.util.ArrayListx��a�Isizexpwt 0000031087x
�srjava.util.ArrayListx��a�Isizexpwt 0000032360x
�srjava.util.ArrayListx��a�Isizexpwt 0000040099x
�srjava.util.ArrayListx��a�Isizexpwt 0000040100x
I would now extract the code that is in there. The code is the number that begin with '00000' and end before the 'x' character.
There is a possible way to do this?