BookmarkSubscribeRSS Feed
sowmyavasa
Calcite | Level 5

Hello,

I have a text string like this : 'UNIT: 10^3/UL’. and it should be converted to ‘UNIT: 10^3/UL’.

The first apostrophie should be changed from " 'UNIT " to " ‘UNIT"

Please let me know how to do this?

Thanks,

Sowmya

4 REPLIES 4
sowmyavasa
Calcite | Level 5

Yes, But I dont know the ASCII code for the quote that is mentioned. Both appears to be same ?

ChrisNZ
Tourmaline | Level 20

Not the same. Look closer.

You can get the code using function rank().

data HAVE;

  X="  'UNIT: 10^3/UL’  ";

  X=translate(X,"’","'");

  A=rank("’");

  B=rank("'");

  put X= / A= B=;

run;

X=’UNIT: 10^3/UL’

A=146 B=39

RW9
Diamond | Level 26 RW9
Diamond | Level 26

My question would by why do you want quotes of any kind in your data, just looks like extra effort for no gain.  If it needs to be quoted for output purposes then use the quote functions provided, but keep your raw data without these things.

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 4216 views
  • 1 like
  • 4 in conversation