Date: Thu, 24 Apr 2003 05:44:03 -0700
Reply-To: Sam <gowdar@ADVBIOL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Sam <gowdar@ADVBIOL.COM>
Organization: http://groups.google.com/
Subject: appending to a string
Content-Type: text/plain; charset=ISO-8859-1
Hi,
Is there any way i can append to the string?
action = ' ';
if actionf = 1 then action = 'nondrug ';
if actionf = 2 then action = 'drug';
if actionf = 3 then action = 'none';
By doing this way , its going to replace action with other variable
.I want to append to the string action like , ACTIONF might be equal
to 1 and 2 then ACTION must be nondrug and drug. If there is any way
to append the string please let me know.Any other method is also
fine.I really appreciate ur answers.
Thank you
|