SAS Procedures

Help using Base SAS procedures
BookmarkSubscribeRSS Feed
FatCaptain
Fluorite | Level 6
Hi,

I thought that this would be a fairly basic problem but I'm struggling for an answer.

I'm trying to remove single and double quote marks from a character variable.

The two statements I'm using to try do this are COMPRESS and TRANWRD. Both of these however, require you to put the character you want to remove inside quotation marks e.g.

COMPRESS(character-variable,''') ;
TRANWRD(character-variable,''','') ;

This obvously causes problems as the quotation mark I want to remove closes the second part of each statement.

Is there any way to get around this or another way of doing it?

Cheers,

Fat Captain.
4 REPLIES 4
data_null__
Jade | Level 19
Inside use two. See example.

[pre]
"""'"
or

'''"'

[/pre]
FatCaptain
Fluorite | Level 6
Cheers,

Thanks for this.
paulkaefer
Lapis Lazuli | Level 10

Another solution is the DEQUOTE function. Call dequote(variable) if the first character is a single or double quote character. It will also remove any text after the closing/right quote(s). [ref]

 

I know this is an older post, but it was one of the first results when searching this, so I figured including this solution here would be a good idea.

GenDemo
Quartz | Level 8
I ended up using word = compress(word,"""'");
as it said the call dequote function could not be found, and similairly if I use word = dequote(word); then it removed leading quotes, but not closing quotes.

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 4 replies
  • 21057 views
  • 2 likes
  • 4 in conversation