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.
********************************************************************************
col a heading "Text with embedded <cr> <tab> characters" format a60
col b heading "Text with embedded <cr> <tab> characters stripped off" format a60
select '['||text||']' a from onecol;
Text with embedded <cr> <tab> characters
------------------------------------------------------------
[This text is all on one line, no <cr>, no <tab>.]
[This text has <cr> <tab> here:
followed by this text.]
[This text has trailing <cr> <tab> characters here:
]
[This text is all on one line, no <cr>, no <tab>.]
4 rows selected.
select '['||trim(replace(text,chr(13)||chr(9),' '))||']'b from onecol;
Text with embedded <cr> <tab> characters stripped off
---------------------------------------------------------
[This text is all on one line, no <cr>, no <tab>.]
[This text has <cr> <tab> here: followed by this text.]
[This text has trailing <cr> <tab> characters here:]
[This text is all on one line, no <cr>, no <tab>.]
4 rows selected.