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


Please Help Members By Posting Answers For Below Questions

What is data _null_?

683


Explain append procedure?

624


what is the difference between unique key and primary key? : Sas-di

582


Explain bmdp procedure?

600


In SAS explain which statement does not perform automatic conversions in comparisons?

789






What will calendar procedure do?

586


Explain what is the use of proc gplot?

690


what is broad cast agent? : Sas-bi

588


How to test the debugging in sas?

594


Explain the special input delimiters used in sas programming.

573


What is the difference between the proc sql and data step?

650


How do you delete duplicate observations in sas?

561


how are numeric and character missing values represented internally? : Sas programming

609


How would you identify a macro variable? : sas-macro

522


How might you use MOD and INT on numeric to mimic SUBSTR on character Strings?

736