Re: Decompose string into list
- To: mathgroup at smc.vnet.net
- Subject: [mg64092] Re: [mg64079] Decompose string into list
- From: "Jacob A. Siehler" <siehlerj at wlu.edu>
- Date: Wed, 1 Feb 2006 04:34:23 -0500 (EST)
- References: <200601310614.BAA20499@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
> But I want to "decompose" a string into a list composed by its elements, e.g. > "Foo bar" turns back into {"F", "o", "o", " ", "b", "a", "r"} S = "Foo bar"; StringTake[S, {#}] & /@ Range[StringLength[S]]