Usage of Chr? 11-23-2011, 03:03 PM
#1
What exactly does a Chr do? Is it like codes for each letter? Like hex and binary?
| Usage of Chr? filter_list | |
(11-25-2011, 04:01 AM)[ntdll.dll]x[advapi32.dll] Wrote: converts a hex code to the string character assigned to it
(11-25-2011, 04:47 AM)Infinity Wrote:Your right sorry there i got it mixed up for a sec... and for getting the Decimal values you can use AscW(11-25-2011, 04:01 AM)[ntdll.dll]x[advapi32.dll] Wrote: converts a hex code to the string character assigned to it
Wrong, it actually converts Decimal values over to it's string value. Nothing to do with Hex values at all.

Chr(AscW("a"))
(11-25-2011, 10:11 PM)ReaperX Wrote: Thanks guys. That helped but what's the point of it? Is it just used as a substitute for the code incase you don't want someone to know what you used?
$var = ""hello""$var = Chr(34) & "hello" & Chr(34)(11-27-2011, 11:52 PM)ReaperX Wrote: Semicolon Values? They Just Use a Semicolon?