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

I read variable=contain(1)......

IS it posibble to write theassignement above?

1 ACCEPTED SOLUTION

Accepted Solutions
Astounding
PROC Star

If you read this as part of a SAS program, it means a DATA step contains an array named CONTAIN.  That statement would assign (as the value of VARIABLE) the first element in the array.

View solution in original post

2 REPLIES 2
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Hi,

 

Could you be a little bit more verbose in the description of the problem, perhaps posting example test data (form of a datastep) and what the output should look like.  I am going to guess that 1 is a character, and you want to search in a string of characters to see if that character exists and if so assign a boolean response to variable 1 being found, 0 not being found:

data have;
input a $;
b=ifn(findc(a,"1") > 0,1,0);
datalines;
045674
341232
run;
Astounding
PROC Star

If you read this as part of a SAS program, it means a DATA step contains an array named CONTAIN.  That statement would assign (as the value of VARIABLE) the first element in the array.

CFC_SAS_Communities_400x225.jpg

Call for content now open!

It's your turn to help shape SAS Innovate 2027. Share your expertise and inspire the SAS community.

Submit your proposal →

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 2694 views
  • 0 likes
  • 3 in conversation