I need to find the numeric field which contains blank in
between..Ex:123 456...there is blank in between the 123
456..I need to know if there is any SAS function to find a
field..
Please suggest...
Answer Posted / mahesh babu
data test;
a="123 456";
b=anyspace(a);
run;
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What are the statements that are executed only?
Mention what is PROC in SAS?
Explain the purpose of retain statement.
Which command is used to perform sorting in sas program?
do you prefer proc report or proc tabulate? Why? : Sas programming
explain the use of % includes a statement in sas? : Sas-administrator
how do you debug and test your sas programs? : Sas programming
What are the default statistics for means procedure?
If you have a dataset that contains 100 variables, but you need only five of those, what is the code to force SAS to use only those variables?
If you need the value of a variable rather than the variable itself what would you use to load the value to a macro variable? : sas-macro
What is program data vector (pdv) and what are its functions?
what is scheduling and how will u implement it. In scheduling 5 jobs r running if there is an error occured at 3rd job and how will u check and waht necessary steps will u take not to repeat the same mistake
How would you determine the number of missing or nonmissing values in computations?
What does the RUN statement do?
Explain append procedure?