toSASName Method

Short Description
Transforms a string so that it uses SAS naming conventions.
Syntax
String toSASName(String input)
Parameters
input
the input string to transform.
Return Value
This method returns a string that represents the transformed input string. For example, if the input string is ‘My Variables’, the returned string would be “’My Variables”n’.
Example
#set( $input="My Variable" )
$CTMUtil.toSASname($input);


/* string returned: "My Variable"n */