BookmarkSubscribeRSS Feed
meena_gowtham
Calcite | Level 5

Hello, 

Kindly help me with this task.

I do have a variable with value 'GLOBAL INDIA'

Here, I want to insert '_' for every letter

Output I need: G_L_O_B_A_L  I_N_D_I_A

 

3 REPLIES 3
Patrick
Opal | Level 21

Strange requirement. Below will work as long as you are not dealing with characters that use more than one byte (because the SAS RegEx functions are not - yet? - built for this).

data test;
  var='GLOBAL INDIA';

  /* define length for new variable doubled the source variable */
  if 0 then var_new=var||var;

  var_new=prxchange('s/([^ ])(?!\b)/$1_/oi',-1,strip(var));
run; 

 

andreas_lds
Jade | Level 19

Looks like homework, what have you tried so far?

Your wanted output does not match the description, there is no underscore after the final A.

If this is type, using a regular expression is my first choice.

Ksharp
Super User
data test;
var='GLOBAL INDIA';

var_new=prxchange('s/(\w)(?=\w)/$1_/o',-1,strip(var));
run;

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 3 replies
  • 886 views
  • 3 likes
  • 4 in conversation