Stay Home, Stay Safe. Check INDIA COVID-19 TRACKER We are moving our articles to Ontoor Solutions.
If you cannot find something here please check on
Ontoor Solutions
How to Remove New line from a String Using PL/SQL/ORACLE
To Remove New line from the string:
DECLARE p_sting VARCHAR2 (100):= 'This is Vikas from Delhi Now the next line. '; BEGIN DBMS_OUTPUT.put_line (p_sting); DBMS_OUTPUT.put_line ( REPLACE (REPLACE (p_sting, CHR (13), ''), CHR (10), ' ')); END;
No comments:
Post a Comment
Please do not add any spam links or abusive comments.
No comments:
Post a Comment
Please do not add any spam links or abusive comments.