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

HI,

 

  AS I am confronted with a problem about'substr', now i just want to get the first two characters from the string of characters.

like : apple juice is my favorite food. i need the 'apple juice'.

 

   i have tried to parse the string and get the var1 for 'apple', var2 for 'juice' and coding like this ' m1 = substr(food,1,compress(var1!!var2)), however, the result is all characters in the string which is not i wanted.

 

i am wondering the better solution to it and the reasons why 'compress' not work out.

 

Thank you!

1 ACCEPTED SOLUTION

Accepted Solutions
PGStats
Opal | Level 21
length twoWords $16;
twoWords = catx(" ", scan(food, 1), scan(food, 2));
PG

View solution in original post

1 REPLY 1
PGStats
Opal | Level 21
length twoWords $16;
twoWords = catx(" ", scan(food, 1), scan(food, 2));
PG

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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
  • 619 views
  • 0 likes
  • 2 in conversation