BookmarkSubscribeRSS Feed
Smitha9
Fluorite | Level 6

Hi,

I have a dataset:

Ali.

Sara.

Maya.

Bran.

I want to remove the period after the name;

want dataset:

Ali

Sara

Maya

Bran

 

thank you in advance

6 REPLIES 6
Shmuel
Garnet | Level 18

You can use compress function - to remove periods

name = compress(name,'.');

or you can use scan function with period as the delimiter

name = scan(name,1,'.');
Reeza
Super User

You can search the functions under the "Character" category for one that meets your need. 

COMPRESS(), COMPBL(), TRANSLATE() are some options.

 

https://documentation.sas.com/?cdcId=pgmsascdc&cdcVersion=9.4_3.5&docsetId=lefunctionsref&docsetTarg...

 


@Smitha9 wrote:

Hi,

I have a dataset:

Ali.

Sara.

Maya.

Bran.

I want to remove the period after the name;

want dataset:

Ali

Sara

Maya

Bran

 

thank you in advance


 

Smitha9
Fluorite | Level 6

 

Hi,

I have a dataset:

Ali.

Sara.

Maya.

Bran.

I want to remove the period after the name;

want dataset:

Ali

Sara

Maya

Bran

 

thank you in advance

ballardw
Super User

Scan will also use periods as delimiter by default just like you "letters before comma" question.

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 6 replies
  • 836 views
  • 0 likes
  • 4 in conversation