Re: Re:
- Posted by "C. K. Lester" <cklester at yahoo.com> Jul 25, 2003
- 2413 views
> > Is there a core function to return a number from a sequence of atoms
> > representing the ASCII codes of numbers?
> >
> > eg. need to get y = 205 number
> >
> > sequence xx
> > xx = {50,48,53} -- 2,0,5 in ASCII
Remember also that
xx = {50,48,53}
is equal to
xx = "205"
> >
> > atom y = ???????
>
> y = xx[1] -- y now equals '50'
> y = xx[2] -- y now equals '48'
> y = xx[3] -- y now equals '53'

