Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
CREATE OR REPLACE FUNCTION scrub_date (rubbish_in varchar2) RETURN DATE IS
scrubbed_date_out DATE;
...
(all the appropriate CASE statements to determine if the string is a DATE. If the code encounters no valid DATE, then return NULL; otherwise return a valid DATE in a proper Oracle DATE expression. Either way, you will ultimately say...)
RETURN scrubbed_date_out;
END;
/