BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
ajatshatru
Fluorite | Level 6

data your_dataset;
status = 'D';
dec01 = 'P101';
dec02 = 'P111';
dec03 = 'P102';
dec04 = '';
dec05 = '';
dec06 = '';

dec07 = '';
dec08 = '';
dec09 = '';
dec10 = '';

run;


DATA your_dataset;
SET YOUR_DATASET;
DEF = catx(' ', of dec01-dec10) ;
DEF2 = FINDC(catx(' ', of dec01-dec10),'D111');

RUN;

 

Ideally this should set value DEF2 to 0 as there is no D111 in the concatenated DEF. But SAS returns value of DEF2 as 2

1 ACCEPTED SOLUTION

Accepted Solutions
mkeintz
PROC Star

Why are you using FINDC, which is defined as (emphasis mine) 

Searches a string for any character in a list of characters   ?

 

So in your case, you are effectively searching "D"  or "1"  (or "1" again and again).

 

I think you want FINDW  (find a word).  Try


DEF3 = FINDW(catx(' ', of dec01-dec10),'D111');

 

Edited addition:

@Reeza's response made me realize I should have added the following to this note.  The FINDW above returns the character position of the search string.  If, instead you actually want the word position, you need to add a 3rd and 4th parameter to the FINDW, as in

DEF3 = FINDW(catx(' ', of dec01-dec10),'P102',' ','e');

The 'e' 4th parameter says "count words instead of characters ...".  The 3rd parameter consequently becomes necessary to specify acceptable words boundaries.

 

When the string is not found both versions of FINDW will return a zero.  But when it is found, you will see a difference.  And remember if some of the left-hand words are blank, those consecutive blanks will be seen as a single word separator.

--------------------------
The hash OUTPUT method will overwrite a SAS data set, but not append. That can be costly. Consider voting for Add a HASH object method which would append a hash object to an existing SAS data set

Would enabling PROC SORT to simultaneously output multiple datasets be useful? Then vote for
Allow PROC SORT to output multiple datasets

--------------------------

View solution in original post

3 REPLIES 3
mkeintz
PROC Star

Why are you using FINDC, which is defined as (emphasis mine) 

Searches a string for any character in a list of characters   ?

 

So in your case, you are effectively searching "D"  or "1"  (or "1" again and again).

 

I think you want FINDW  (find a word).  Try


DEF3 = FINDW(catx(' ', of dec01-dec10),'D111');

 

Edited addition:

@Reeza's response made me realize I should have added the following to this note.  The FINDW above returns the character position of the search string.  If, instead you actually want the word position, you need to add a 3rd and 4th parameter to the FINDW, as in

DEF3 = FINDW(catx(' ', of dec01-dec10),'P102',' ','e');

The 'e' 4th parameter says "count words instead of characters ...".  The 3rd parameter consequently becomes necessary to specify acceptable words boundaries.

 

When the string is not found both versions of FINDW will return a zero.  But when it is found, you will see a difference.  And remember if some of the left-hand words are blank, those consecutive blanks will be seen as a single word separator.

--------------------------
The hash OUTPUT method will overwrite a SAS data set, but not append. That can be costly. Consider voting for Add a HASH object method which would append a hash object to an existing SAS data set

Would enabling PROC SORT to simultaneously output multiple datasets be useful? Then vote for
Allow PROC SORT to output multiple datasets

--------------------------
Reeza
Super User

FINDC() looks up characters not words/substrings.

 

From the documentation:

Searches a string for any character in a list of characters

 

I think you want WHICHC() instead. FIND will return the character location not the index of the terms, so I think this is likely what you're after. 

DEF2 = whichc('D111', of dec01-dec10);

 


@ajatshatru wrote:

data your_dataset;
status = 'D';
dec01 = 'P101';
dec02 = 'P111';
dec03 = 'P102';
dec04 = '';
dec05 = '';
dec06 = '';

dec07 = '';
dec08 = '';
dec09 = '';
dec10 = '';

run;


DATA your_dataset;
SET YOUR_DATASET;
DEF = catx(' ', of dec01-dec10) ;
DEF2 = FINDC(catx(' ', of dec01-dec10),'D111');

RUN;

 

Ideally this should set value DEF2 to 0 as there is no D111 in the concatenated DEF. But SAS returns value of DEF2 as 2


 

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 412 views
  • 1 like
  • 3 in conversation