Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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 / akhil126

data test;
input c $ 20.;

cards;
123 456
217 236
456235
225 5665
55
77 85
46556
4588 56
;
run;
proc print;
run;

data e(drop=e t);
set test;
e=length(c);
t=find(c,'');
if e>t;
run;
proc print data=e;
run;

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Mention what is SAS data set?

1093


name the scheduler for scheduling job and explain the scheduler? : Sas-di

1003


how to create the AE dataset by using SDTMIG specifications and SAP plan by using UNIX platform?

2712


if the Id has more then two transcatiion then show the first observation, IF Id has only two observation then It show both the observation

1559


describe how to adjust the performance of data integrator? : Sas-di

948


how do the in= variables improve the capability of a merge? : Sas programming

1396


What is the difference between order and group variable in proc report?

1370


what do the pad and dim functions do? : Sas programming

965


Are you involved in writing the inferential analysis plan? Tables specfications?

2176


What do the mod and int function do? : Sas programming

1136


What are the implications?

1632


What system options would you use to help debug a macro? : sas-macro

1053


what cause the "error: connect:" and "error in the libname statement" when there weren't any such problems?

2129


What is the use of function Proc summary?

1216


What is the use of the %include statement?

1090