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;

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 586 views
  • 3 likes
  • 4 in conversation