Handling New line In PL SQL

Post date: 30-Mar-2012 10:04:17

If there is requirement to handle new lines using PL SQL make use of char(13) 

ex

l_out := 'hello' || chr(13) || 'world';