I am using regexp to get all the sub string after a special character ':' appear-
Given String-
Reason for creating the box: Order done by me (100005 - Error Format: Value ABC000001606 of EmpId is not valid)
Expected Output-
Order done by me (100005 - Error Format: Value ABC000001606 of EmpId is not valid)
I try this one but not working as required-
SELECT REGEXP_SUBSTR('Reason for creating the box: Order done by me (100005 - Error Format: Value ABC000001606 of EmpId is not valid)', ':[^ ])') "REGEXPR_SUBSTR" FROM DUAL;
Could you please help?