I want to have semilicon as delimiter, how to do that?
If you want to use semicolon as a delimiter try replacing your cards statement with cards4 statement.
Then at the end, instead of one semicolon before the run put ;;;;
If you want to use semicolon as a delimiter try replacing your cards statement with cards4 statement.
Then at the end, instead of one semicolon before the run put ;;;;
Alternatywą dla CARDS4 jest DATALINES4, schemat jest następujący:
data test;
infile DATALINES4 dlm=';';
input a b c;
DATALINES4;
1;2;3
4;5;6
;;;;
run;
Bart.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.