Hi all, I want to remove 1st two Character from a string i.e "MX2312323". I want to remove 'MX'. How i will do that. Please help me out
Look up the SUBSTR function in SAS Help.
Something like this will work
newvalue = substr(oldvalue,3);
Look up the SUBSTR function in SAS Help.
Something like this will work
newvalue = substr(oldvalue,3);
Thank You.
Catch the best of SAS Innovate 2025 — anytime, anywhere. Stream powerful keynotes, real-world demos, and game-changing insights from the world’s leading data and AI minds.
See how to use one filter for multiple data sources by mapping your data from SAS’ Alexandria McCall.
Find more tutorials on the SAS Users YouTube channel.