|
Thread: Chr
-
Oct 24th, 2005, 01:45 PM
#1
Thread Starter
Admodistrator
Chr
Is chr(0x20) the same as chr(20)? or is there a difference somewhere?
-
Oct 24th, 2005, 01:54 PM
#2
Re: Chr
nope, chr(0x20) is the same as chr(32) , because 0x20 would be a long value rather than an integer
if you have vb you can prove this by Console.WriteLine(0x20); , you will see 32 gets printed out.
~
if a post is resolved, please mark it as [Resolved]
protected string get_Signature(){return Censored;}
[vbcode][php] please use code tags when posting any code [/php][/vbcode]
-
Oct 24th, 2005, 05:40 PM
#3
Re: Chr
Of course you wouldn't see anything becuase ASCII 32 is the breaking / condensing space character generated when you hit the space bar.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|