BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
EinarRoed
Pyrite | Level 9

Hello,

 

If the input variable contains a comma, then the containscomma variable should be set to 1: 

 

data _null;
	input = "Why, oh why";
	if findw(input, ",") > 0 then do; containscomma=1; end;
	else containscomma=0;
	put containscomma;
run;

It does contains a comma, yet containscomma is set to 0.

 

Can someone please advise on how I can make the code work as intended?

1 ACCEPTED SOLUTION

Accepted Solutions
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Findw is a function for finding a word delimited by certain characters.  Comma is not a word, it is a delimiter.  If you want to find text in another you can use index() - these are all well described in the manual:

data _null;
	input = "Why, oh why";
	containscomma=ifn(index(input,","),1,0);
	put containscomma;
run;

Note I use the binary choise ifn() function to simplfy the code.  Also, I do not put an operator after the index, basically if index finds the character then the result is a positive number, hence if positive number=true return first, else second. 

View solution in original post

1 REPLY 1
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Findw is a function for finding a word delimited by certain characters.  Comma is not a word, it is a delimiter.  If you want to find text in another you can use index() - these are all well described in the manual:

data _null;
	input = "Why, oh why";
	containscomma=ifn(index(input,","),1,0);
	put containscomma;
run;

Note I use the binary choise ifn() function to simplfy the code.  Also, I do not put an operator after the index, basically if index finds the character then the result is a positive number, hence if positive number=true return first, else second. 

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
  • 1 reply
  • 1339 views
  • 2 likes
  • 2 in conversation