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...


We have a string like this "kannafromsalembut" ,from this i
want to get only "fromsal" (but one condition with out
using substring function)here we can not use scan because in
the given string there is no delimeter? so give ans without
out using substring ?

Answers were Sorted based on User's Feedback



We have a string like this "kannafromsalembut" ,from this i want to get only "fromsa..

Answer / ram kumar

data _null_;
file print;
tranw=tranwrd('kannafromsalembut','kanna',' ');
tranw1=tranwrd(tranw,'embut',' ');
tranw2=strip(tranw2);
put tranw2= ;
run;
this will give your required output. that is tranw2=fromsal.

Is This Answer Correct ?    11 Yes 4 No

We have a string like this "kannafromsalembut" ,from this i want to get only "fromsa..

Answer / abcds

data _null_;
file print;
tranw = tranwrd('kannafromsalembut','kanna',' ');
tranw1 = tranwrd(tranw,'embut',' ');
tranw2 = strip(tranw1);
put tranw2= ;
run;
this is the correct one.

Is This Answer Correct ?    7 Yes 0 No

We have a string like this "kannafromsalembut" ,from this i want to get only "fromsa..

Answer / kumarravi123

One will get appreciate from our team members if u give
correct answer

Is This Answer Correct ?    2 Yes 1 No

We have a string like this "kannafromsalembut" ,from this i want to get only "fromsa..

Answer / ramkgupta

thank you abcds for correcting my small mistake.

Is This Answer Correct ?    0 Yes 0 No

We have a string like this "kannafromsalembut" ,from this i want to get only "fromsa..

Answer / nagmani

data p;
input @6 x$ 7.;
cards;
kannafromsalembul
;
run;

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More SAS Interview Questions

What are the default statistics for means procedure?

0 Answers  


Do you use PROC REPORT or PROC TABULATE? Which do you prefer? Explain.

3 Answers  


I am preparing SAS Certified Advanced Programmer for SAS 9 in 2014. If anybody has the latest dumps for this exam, please mail me at dhiman.mukherjee@gmail.com

0 Answers  


i am importing large data from oracle to work library. in log there is a error message worklibrary space is not enough. then how to import the data safely to sas environment.

2 Answers   Cap Gemini,


what is enterprise guide? What is the use of it? : Sas programming

0 Answers  


What SAS statements would you code to read an external raw data file to a DATA step?

10 Answers   NIIT,


how can you sort the dataset having millions of OBS(instead of sort procedure?

4 Answers   EXL,


How do you add a prefix to some or all variables in a dataset using a SAS macro?

2 Answers  


How would you compile all macros from a folder in a study, within the autoexec program?

1 Answers  


How many versions came upto now in SAS?

3 Answers   CTS, TCS,


what is the difference between: x=a+b+c+d; and x=sum (of a, b, c ,d);? : Sas programming

0 Answers  


where to use sas business intelligence? : Sas-bi

0 Answers  


Categories