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.

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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