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

I'm trying to replace a month name from some Hebrew encoding to UTF given as a string literal by using transtrn() function but the string was not replaced:

73         data _null_;
 74           txt = '3139363920F8E1EEE8F4F1203035'x;
 75           t1 = scan(txt,2,' ');
 76           t2 = 'september';
 77         
 78           txt_new = transtrn(txt,t2,t1);
 79           put txt_new=;
 80         run;
 
 txt_new=1969 ������ 05

it should be:

   "1969 september 05"

1 ACCEPTED SOLUTION

Accepted Solutions
FreelanceReinh
Jade | Level 19

Hi @Shmuel,

 

Change the order of the second and third argument and apply the TRIM function:

txt_new = transtrn(txt,trim(t1),t2);

View solution in original post

3 REPLIES 3
FreelanceReinh
Jade | Level 19

Hi @Shmuel,

 

Change the order of the second and third argument and apply the TRIM function:

txt_new = transtrn(txt,trim(t1),t2);
Shmuel
Garnet | Level 18

Thanks, both functions result as expecterd: trim(t1) as strip(t1)

Kurt_Bremser
Super User

What @FreelanceReinh said, and heed Maxim 46:

data _null_;
  txt = '3139363920F8E1EEE8F4F1203035'x;
  t1 = scan(txt,2,' ');
  t2 = 'september';

  txt_new = transtrn(txt,strip(t1),t2);
  put txt_new=;
run;

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 463 views
  • 1 like
  • 3 in conversation