I need to trim New Line (Chr(13) and Chr(10) and Tab space from the beginning and end of a String) in an Oracle query. I learnt that there is no easy way to trim multiple charac
Instead of using regexp_replace multiple time use (\s) as given below;
regexp_replace
(\s)
SELECT regexp_replace('TEXT','(\s)','') FROM dual;