#CRLF$ without the $
#CRLF$ without the $
We have #CR and #LF. Can we please have a native #CRLF?
Re: #CRLF$ without the $
#CR => 13Mistrel wrote:We have #CR and #LF. Can we please have a native #CRLF?
#LF => 10
#CRLF => ???
1310? 23?
Greetings ... Kiffi
Hygge
-
- Addict
- Posts: 2344
- Joined: Mon Jun 02, 2003 9:16 am
- Location: Germany
- Contact:
Re: #CRLF$ without the $
#CRLF = #LF << 8 | #CR, isn't it?Kiffi wrote:#CR => 13Mistrel wrote:We have #CR and #LF. Can we please have a native #CRLF?
#LF => 10
#CRLF => ???
1310? 23?
Greetings ... Kiffi
Code: Select all
#CRLF = #LF << 8 | #CR
a.s = #CRLF$
Debug PeekW(@a)
Debug #CRLF
; Try if Chr() works with such constructs which could be misunderstood as unicode characters.
If Chr(#CRLF) = Chr(#CR) + Chr(#LF)
Debug "Works."
Else
Debug "Works definately not."
EndIf
Last edited by DarkDragon on Sun Jan 06, 2008 10:13 am, edited 1 time in total.
bye,
Daniel
Daniel
Re: #CRLF$ without the $
@DD: What i try to explain is, that IMHO it makes no sense to have a #CRLF
Greetings ... Kiffi
Greetings ... Kiffi
Hygge
I don't really understand this... ?
it would be 16bit then? Hard to use in a byte array. Not usable like that for unicode either.
I'm not against it, I'm just trying to understand it.
it would be 16bit then? Hard to use in a byte array. Not usable like that for unicode either.
I'm not against it, I'm just trying to understand it.
Paul Dwyer
“In nature, it’s not the strongest nor the most intelligent who survives. It’s the most adaptable to change” - Charles Darwin
“If you can't explain it to a six-year old you really don't understand it yourself.” - Albert Einstein
“In nature, it’s not the strongest nor the most intelligent who survives. It’s the most adaptable to change” - Charles Darwin
“If you can't explain it to a six-year old you really don't understand it yourself.” - Albert Einstein