From: Mohamed A. Jeragh
Subject: String-->list?
Date: 
Message-ID: <55gov2$ho8@mtinsc01-mgt.ops.worldnet.att.net>
How Can convert a string to list? for example:
"Hello world, this is my first program"
will be 
(Hello world, this is my first program)

Thanks in advance,
--MJ

From: Rob Warnock
Subject: Re: String-->list?
Date: 
Message-ID: <55gr1s$b5i@tokyo.engr.sgi.com>
Mohamed A. Jeragh <·········@·················@worldnet.att.net> wrote:
+---------------
| How Can convert a string to list? for example:
| "Hello world, this is my first program"
| will be 
| (Hello world, this is my first program)
+---------------

You may find the book "Simply Scheme" (Harvey & Wright) helpful.
Much of what they present is in terms of "words" and "sentences"
(including automatic coercings of symbols, strings, and numbers).


-Rob

-----
Rob Warnock, 7L-551		····@sgi.com
Silicon Graphics, Inc.		http://reality.sgi.com/rpw3/
2011 N. Shoreline Blvd.		Phone: 415-933-1673  FAX: 415-933-0979
Mountain View, CA  94043	PP-ASEL-IA
From: Kirt Undercoffer
Subject: Re: String-->list?
Date: 
Message-ID: <55ifnn$tth@portal.gmu.edu>
(coerce "Hello world, this is my first program" 'list)


Kirt Undercoffer


Mohamed A. Jeragh (·········@·················@worldnet.att.net) wrote:
: How Can convert a string to list? for example:
: "Hello world, this is my first program"
: will be 
: (Hello world, this is my first program)

: Thanks in advance,
: --MJ