I'm not sure about the tab. I did the
following ('tab' is between the ' '):
SQL> select dump(' ') from dual;
DUMP('')
---------------- Typ=96 Len=1: 32 SQL> select chr(32) from dual;
C
- It looks like a tab, but since it is a nonprinting
character, it's hard to tell.
I'm pretty sure new line is 13 ( appears as ^M line
ending char when viewed in vi). I looked it up once online, and I did the
following:
SQL> select chr(013) from dual;
C
- SQL> select 'you' || chr(13) || 'me' ||
chr(13) || 'us'
2 from dual; 'YOU'||CH
--------- you me us HTH,
Bryan
|
Title: RE: tab ascii value
- tab ascii value Tatireddy, Shrinivas (MED, Keane)
- RE: tab ascii value Hallas John
- RE: tab ascii value DBarbour
- RE: tab ascii value Jacques Kilchoer
- RE: tab ascii value Bryan S
- RE: tab ascii value Jacques Kilchoer
- Re: tab ascii value Bunyamin K. Karadeniz