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.

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!

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
  • 913 views
  • 0 likes
  • 4 in conversation