BookmarkSubscribeRSS Feed
RameshReddy
Calcite | Level 5

Hi,

can any one help me out on this

one datastet is there with names column

names

ramesh S/o bhoomareddy

w/o ramesh

sony d/o suresh

ramesh alias don

so from this i want to  retrive name  before special characters like S/o, W/o, alias

Thanks in advance

2 REPLIES 2
kassimorra
Calcite | Level 5

Hello,

For you use special names, you have to put it inside single commas and N at the end.

Ex:  'rammesh S/o bhoomareddy'n.

Here is an example with your names.

data teste;

        'ramesh S/o bhoomareddy'n = 1;

        'w/o ramesh'n = 2;

        'sony d/o suresh'n = 3;

        'ramesh alias don'n = 4;

run;

proc sql;

    select 'w/o ramesh'n from teste;

quit;

Tell me if it works !

Regards,

Kassim

art297
Opal | Level 21

It would help if you provide the way you want the resulting file to look.

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

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 2 replies
  • 1282 views
  • 0 likes
  • 3 in conversation