Date: Sun, 27 Dec 2009 07:15:06 -0800
Reply-To: Francogrex <franco@GREX.ORG>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Francogrex <franco@GREX.ORG>
Organization: http://groups.google.com
Subject: convert an array into a string
Content-Type: text/plain; charset=ISO-8859-1
How can I get sas to automatically convert an array of integers or
doubles (like the one below):
array arr(5) (4 7 12 5 98);
into a string (like the one below):
str="4 7 12 5 98";
|