BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
DmytroYermak
Lapis Lazuli | Level 10

Hi all,

 

I have string value:

 

 

Cohort 33 / 0.1 mg/kg

 

and have to add 3 more empty spaces between slash and 6, like this one:

 

Cohort 39 /   0.2 mg/kg

 

What is the best solution for the case? Transword and simple concatination are not working.

 
1 ACCEPTED SOLUTION

Accepted Solutions
Kurt_Bremser
Super User

Straight forward:

data test;
length string $30;
string = 'Cohort 9 / 7 mg/kg';
string = substr(string,1,indexc(string,'/')+1) !! '   ' !! substr(string,indexc(string,'/')+2);
run;

View solution in original post

5 REPLIES 5
Kurt_Bremser
Super User

Straight forward:

data test;
length string $30;
string = 'Cohort 9 / 7 mg/kg';
string = substr(string,1,indexc(string,'/')+1) !! '   ' !! substr(string,indexc(string,'/')+2);
run;
DmytroYermak
Lapis Lazuli | Level 10
Thank you for the quick reply!
gamotte
Rhodochrosite | Level 12

The name of the function is tranwrd not transword.

 

string2=tranwrd(string,"/ ","/   "); /*works*/

DmytroYermak
Lapis Lazuli | Level 10
Thank you!
ballardw
Super User

Remember if you are attempting to do this with the source variable as the target variable, insert in place as it were, the length of the variable better be long enough to accept the additional characters or you may get truncation.

 

See this slight modification of the solution to demonstrate:

data test;
length string $19;
string = 'Cohort 9 / 7 mg/kg';
string = substr(string,1,indexc(string,'/')+1) !! '   ' !! substr(string,indexc(string,'/')+2);
run;

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
  • 5 replies
  • 6447 views
  • 0 likes
  • 4 in conversation