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-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

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.

SAS Training: Just a Click Away

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

Browse our catalog!

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