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.

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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