|
[Date Index]
[Thread Index]
[Author Index]
Re: Converting a list of strings to a single space-delimited string
- To: mathgroup at smc.vnet.net
- Subject: [mg122806] Re: Converting a list of strings to a single space-delimited string
- From: Ron <ragove at verizon.net>
- Date: Fri, 11 Nov 2011 04:53:49 -0500 (EST)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
If the string consists only of numbers, say a = ["1", "2","3"}, this will do what you want
ToString[FromDigits[Map[ToExpression, a]]]
Prev by Date:
Re: nVidia Optumus prevents using CUDA?
Next by Date:
Re: Scoping of pattern names
Previous by thread:
Re: Converting a list of strings to a single
Next by thread:
Re: Converting a list of strings to a single space-delimited string
|