1. ?? poke
- Posted by Bernie Ryan <LockCityData at CS.COM>
Mar 05, 2000
-
Last edited Mar 06, 2000
I have a mental block can someone tell me how I convert
the sequence '&' into the binary number representing an
amperesand so I can poke into memory.
Thanks in advance
Bernie
2. Re: ?? poke
asc('&')
or something like that?
Nick
----- Original Message -----
From: Bernie Ryan <LockCityData at CS.COM>
To: <EUPHORIA at LISTSERV.MUOHIO.EDU>
Sent: Monday, March 06, 2000 2:16 PM
Subject: ?? poke
> I have a mental block can someone tell me how I convert
>
> the sequence '&' into the binary number representing an
>
> amperesand so I can poke into memory.
>
> Thanks in advance
>
> Bernie
>
>
3. Re: ?? poke
- Posted by Undetermined origin c/o LISTSERV administrator
Mar 05, 2000
-
Last edited Mar 06, 2000
Bernie Ryan wrote:
> I have a mental block can someone tell me how I convert
>
> the sequence '&' into the binary number representing an
>
> amperesand so I can poke into memory.
>
> Thanks in advance
>
> Bernie
You can just poke it - no conversion is necessicary. Example:
poke(address,"&") -- Poke a sequence
or:
poke(address,'&') -- Poke a character
Either will work the same way.
Jeff Fielding