Online File
How to use this page
Rick Aster: Professional SAS Programming Shortcuts: Contents
data _null_; length phone $ 10 areacode $ 3; phone = '8005551212'; areacode = substr(phone, 1, 3); putlog phone= areacode=; run;