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.
replace ('0000123', '0');
replace ('0000123', '0', 'X');
create or replace function clean (str_in varchar2) return varchar2 is
strip_chrs varchar2(100);
begin
for i in 1..31 loop
strip_chrs := strip_chrs||chr(i);
end loop;
return translate(str_in,'^'||strip_chrs,'^');
end;
/
Function created.
select clean('Test cleaning...['||chr(9)||chr(13)||chr(10)||']') from dual;
Test cleaning...[]