Hi....I would like to be able to select a ID one at a time from a list. Each ID consist of 3 letters followed by a space and 4 digit number. I need to keep this ID in this form. I am assume if I used the scan function, it would consider each ID as 2 separate ID's because of the blank space in between them. Is there a way around this. Thanks,
ID
CME 1199
DLS 1213
WRF 1155
RTY 1345
If you are trying to handle both situations of 3 letters and no letters why not change your above code to something like this
PROC SQL NOPRINT;
SELECT DISTINCT ID
INTO :IDLIST1 SEPARATED BY ','
FROM have;
QUIT;
and then use on the macro side
%scan(&idlist1, i, ',')
Please try
data have;
input text &$ 20.;
cards;
CME 1199
DLS 1213
WRF 1155
RTY1345
;
data want;
set have;
if prxmatch('/\w\w\w\D\S\d+/',text) then flag=1;
run;
Thanks,
Jag
If your delimited list contains items that contain the delimiter the item must mask the delimiter in some way. Typically this is done by enclosing the item(s) that contain delimiters in quotes.
If your list originates from a vertical (separate records) as you have illustrated, then consider using a different item separator character (one that does not appear within any item). So if you are using PROC SQL to generate a macro-variable as your item-list, then choose a different SEPARATED BY data-string value to distinguish items in your list, then use that data-string as your SCAN argument when parsing.
Scott Barry
SBBWorks, Inc.
twildone wrote:
Hi....I would like to be able to select a ID one at a time from a list. Each ID consist of 3 letters followed by a space and 4 digit number. I need to keep this ID in this form. I am assume if I used the scan function, it would consider each ID as 2 separate ID's because of the blank space in between them. Is there a way around this. Thanks,
ID
CME 1199
DLS 1213
WRF 1155
RTY 1345
I don't understand the reason why SCAN is suggested here. You don't need SCAN to select from the list. Could you explain further?
Hi...I was using the scan function as part of a macro loop to check to see whether or not the list of ID's had records contained in a larger dataset when the ID was only numerical (example, 1199) Now the ID field has changed to include 3 letters followed by a blank space and now I need to do the same check but now with the 3 letters preceeding the 4 numbers....
PROC SQL NOPRINT;
SELECT DISTINCT ID
INTO :IDLIST1 SEPARATED BY ' '
FROM WORK.ID_LIST;
QUIT;
since you are trying to search the id which have 3 letters followed by space and 4 digits. please try
PROC SQL NOPRINT;
SELECT DISTINCT ID
INTO :IDLIST1 SEPARATED BY ' '
FROM WORK.ID_LIST where prxmatch('/\w\w\w\D\S\d\d\d/',text)>0;
QUIT;
Thanks,
Jag
Why use macro at all?. Just get the distinct ID list and do the test using SQL or data step. Doing an operation on records from a SAS data set is much easier than fiddling with scan the values of a macro variable.
If you are trying to handle both situations of 3 letters and no letters why not change your above code to something like this
PROC SQL NOPRINT;
SELECT DISTINCT ID
INTO :IDLIST1 SEPARATED BY ','
FROM have;
QUIT;
and then use on the macro side
%scan(&idlist1, i, ',')
Use a delimiter that is not part of the data. For example |.
The third parameter to the SCAN() or %SCAN() function is the delimiter value.
.... separated by '|' ....
... %scan(&idlist,&i,|) ...
If i understand your question properly this is how i would do it. Im sure there are more elegant ways to do this.
Thanks
data have;
input id $50.;
datalines;
CME 1199 DLS 1213 WRF 1155 RTY 1345
;
run;
data want;
set have;
do i=1 to countw(id) by 2;
sep_id = catx(' ',scan(id,i), scan(id, i+1));
output;
end;
drop id i;
run;
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.