I am reading in a text file where 2 character variables both have a value of an apostrophe ' separated by a comma delimiter in di studio. Di is reading it as the apostrophes are masking the comma, taking the comma as the value rather than the apostrophes as the value.
An example of the record looks like
95,',',,,word
This should give me:
Var1 = 95
Var2 = '
Var3 = '
Var4 = .
Var5 = .
Var6 = word
Instead I get:
Var1 = 95
Var2 = ,
Var3 = .
Var4 = .
...
What informats do I need to use or options do I need to set other than delimiter set to a comma? (Di options preferably, but base SAS options would help as well). Thanks in advance.