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: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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