How to get part of string form the source string without
using sub string function in SAS?
Answers were Sorted based on User's Feedback
Answer / navneet
We can't use scan() in a string because how could we define
a delimeter in a string..... so I think an easier way to
select a sub part is to use column input style :)
| Is This Answer Correct ? | 0 Yes | 2 No |
What is the purpose of _character_ and _numeric_?
What are symbol tables?Differemce between Local N Global Symbol tables.....
How the Excel file enter into the SAS environment without Code of Infile & Import procs,if i have no file Conversion?
data abc; input x y ; cards; 1 2 5 6 7 8 7 8 1 7 5 7 ; run; Proc Freq data=abc; tables x*y / chisq nopercent nocol norow PLCORR; RUN; If we run the code, we have Polychoric Correlation = 0.9054 in the last table. I want to extract this particular entry with the value. Means I will create one dataset in which this value will be stored/extracted. I need your help in coding this. Please help me out.
How do you add a number to a macro variable?
what is the primary data source for the wrs? : Sas-bi
Give some ways by which you can define the variables to produce the summary report (using proc report)?
How would you code a merge that will write the matches of both to one data set, the non-matches from the left-most data set to a second data set, and the non-matches of the right-most data set to a third data set.
How could you generate test data with no input data?
What is the purpose of the trailing @? The @@? How would you use them?
Differentiate between sas functions and sas procedures.
What is the pound sign used for the DATA _NULL_?