Hi All,
I have the following table with one variable call 'FullEntry'.
FullEntry
khafiz (Kula Hafiz - Assistant Director, Vancouver, BC)
jthompson (Jill Thompson - Senior Education Officer, New York, NY)
tkewen (Tom John Kewen - Office Assistant, Los Angeles, CA)
I want to separate it out as follows. Can someone help please.
USER_ID Name Position City State
khafiz Kula Hafiz Assistant Director Vancouver BC
jthompson Jill Thompson Senior Education Officer New York NY
tkewen Tom John Kewen Office Assistant Los Angeles CA
separate by SCAN() using delimiter '()-,':
USER_ID = scan(FullEntry,1,'()-,');
Name = scan(FullEntry,2,'()-,');
Position = scan(FullEntry,3,'()-,');
City = scan(FullEntry,4,'()-,');
State = scan(FullEntry,5,'()-,');
separate by SCAN() using delimiter '()-,':
USER_ID = scan(FullEntry,1,'()-,');
Name = scan(FullEntry,2,'()-,');
Position = scan(FullEntry,3,'()-,');
City = scan(FullEntry,4,'()-,');
State = scan(FullEntry,5,'()-,');
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
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.
Ready to level-up your skills? Choose your own adventure.