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.

sas-innovate-white.png

Missed SAS Innovate in Orlando?

Catch the best of SAS Innovate 2025 — anytime, anywhere. Stream powerful keynotes, real-world demos, and game-changing insights from the world’s leading data and AI minds.

 

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.

SAS Training: Just a Click Away

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

Browse our catalog!

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