I have a macro array of formats, however the %scan function is dropping the "$" and ".", how can I get %scan to read those characters?
27 %put macro array of format values is &formats;
macro array of format values is $2. 8. $6. $55. DATETIME19. DATETIME19. $1.
28 %put fourth scanned format value is %scan(&formats,4);
fourth scanned format value is 55
Specify that %scan should only use a blank, %str( ) as the delimiter, e.g.:
1 %let formatlist=$2. 8. $6. $55. DATETIME19. DATETIME19. $1. ; 2 %put %scan(&formatlist,4,%str( )) ; $55.
Specify that %scan should only use a blank, %str( ) as the delimiter, e.g.:
1 %let formatlist=$2. 8. $6. $55. DATETIME19. DATETIME19. $1. ; 2 %put %scan(&formatlist,4,%str( )) ; $55.
Read the friendly manual. The documentation for %scan includes this bit clearly showing that the $ character by default treated as a delimiter.
If you use the %SCAN function with only two arguments, then the default delimiters depend on whether your computer uses ASCII or EBCDIC characters.
If your computer uses ASCII characters, then the default delimiters are as follows:blank ! $ % & ( ) * + , - . / ; < ^¦In ASCII environments that do not contain the ^ character, the %SCAN function uses the ~ character instead. If your computer uses EBCDIC characters, then the default delimiters are as follows:blank ! $ % & ( ) * + , - . / ; < ¬ | ¢¦
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.