Hi,
I have been trying to trim the tab spaces (space introduced by pressing tab key), white spaces (space bar) etc in beginning and end of string using the below statement,
However the below trims one tab space, one white space, if it is more than that the tab spaces at beginning of string is not getting trimmed
SELECT trim(REGEXP_REPLACE('STRING','^+[[:space]]','')) into v_var from dual;
SELECT trim(REGEXP_REPLACE*'STRING','[[:space]]+$','') into v_Var1 from dual;
Please help if the trimming of multiple tab spaces /white spaces at beginning and end of string is achievable
Thanks