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.
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;
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;
The name of the function is tranwrd not transword.
string2=tranwrd(string,"/ ","/ "); /*works*/
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;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
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.
Ready to level-up your skills? Choose your own adventure.