BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
vxhong17
Calcite | Level 5

Hi Everyone,

I have one variable with the year. I want to remove the year. Could you let me know how to do so? Thank you!

For example,

Name

ABB3 (1942)

A12

A1E (2001)

AM2E (2012)

I want to have:

Name

ABB3

A12

A1E

AM2E

1 ACCEPTED SOLUTION

Accepted Solutions
pradeepalankar
Obsidian | Level 7

Hi,

you can try this:

data test;

input Name $20.;

name=scan(name,1,'(');

cards;

ABB3 (1942)

A12

A1E (2001)

AM2E (2012)

;

run;

View solution in original post

4 REPLIES 4
LinusH
Tourmaline | Level 20

There is a bunch of character string function that you can exploit, such as substr, findc...

This must be one of the most common topics (beside date handling), a lot of examples are available on these forums, and support.sas.com.

Data never sleeps
VarunIyer
Calcite | Level 5

Look at the Scan function to get all the characters before the bracket "(".

pradeepalankar
Obsidian | Level 7

Hi,

you can try this:

data test;

input Name $20.;

name=scan(name,1,'(');

cards;

ABB3 (1942)

A12

A1E (2001)

AM2E (2012)

;

run;

vxhong17
Calcite | Level 5

Hi pradeepalankar, LinusH, and Varunlyer,

Thank you for your help!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 1501 views
  • 6 likes
  • 4 in conversation