BookmarkSubscribeRSS Feed
manojinpec
Obsidian | Level 7

Hi,

While reading the csv file which are having the spaces i am not able to read properly.

For Example my csv file has following column

abc /nw

def /sw

when i am trying to read using the dlm=',' option i am getting the column as

abc

def

?

Please assist what can be done.

1 REPLY 1
DF
Fluorite | Level 6 DF
Fluorite | Level 6

I've ran a simple test using the data you mentioned and it seems to work fine.  Can you post the rest of the lines from your input file, and the code you're using (altered to hide confidential data if necessary)?

My code is:

data test;

format a $10.;

format b $10.;

infile '~/test.csv' dlm=',';

input a $ b $;

run;

Sample input file is attached.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 1303 views
  • 0 likes
  • 2 in conversation