Re: Change a string in to a identical list

2020-06-04 Thread Carl Sorensen
l Sorensen wrote: > > > > On 6/4/20, 7:00 AM, "Freeman Gilmore" wrote: > > On Thu, Jun 4, 2020 at 7:23 AM David Kastrup wrote: > > > > Freeman Gilmore writes: > > > > > How to change a string in to a identical list. > > > From "-3

Re: Change a string in to a identical list

2020-06-04 Thread Jean Abou Samra
Hello, https://www.gnu.org/software/guile/manual/html_node/List_002fString-Conversion.html Carl Carl: I know about that section but i do not know how to make any thing there work for this Do you have an example? Thank you,ƒg This is: (string->list "abcd") returning (#\a #\b #\c #\d).

Re: Change a string in to a identical list

2020-06-04 Thread Freeman Gilmore
7:23 AM David Kastrup wrote: > > > > Freeman Gilmore writes: > > > > > How to change a string in to a identical list. > > > From "-3 31 A -6 B -8" to (-3 31 A -6 B -8).(Or from ("-3" > > > "31" "A" &quo

Re: Change a string in to a identical list

2020-06-04 Thread Carl Sorensen
On 6/4/20, 7:00 AM, "Freeman Gilmore" wrote: On Thu, Jun 4, 2020 at 7:23 AM David Kastrup wrote: > > Freeman Gilmore writes: > > > How to change a string in to a identical list. > > From "-3 31 A -6 B -8" to (-3 31 A -6 B -8).(Or from (&qu

Re: Change a string in to a identical list

2020-06-04 Thread Freeman Gilmore
On Thu, Jun 4, 2020 at 7:23 AM David Kastrup wrote: > > Freeman Gilmore writes: > > > How to change a string in to a identical list. > > From "-3 31 A -6 B -8" to (-3 31 A -6 B -8).(Or from ("-3" > > "31" "A" "-6

Re: Change a string in to a identical list

2020-06-04 Thread David Kastrup
Freeman Gilmore writes: > How to change a string in to a identical list. > From "-3 31 A -6 B -8" to (-3 31 A -6 B -8).(Or from ("-3" > "31" "A" "-6" "B" "-8") to (-3 31 A -6 B -8) if it is simpler.) Why

Change a string in to a identical list

2020-06-04 Thread Freeman Gilmore
How to change a string in to a identical list. >From "-3 31 A -6 B -8" to (-3 31 A -6 B -8).(Or from ("-3" "31" "A" "-6" "B" "-8") to (-3 31 A -6 B -8) if it is simpler.) Thank you, ƒg