|
On Wed, Aug 17, 2011 at 10:15 PM, Arthur Tabachneck <art297@rogers.com> wrote:
> It means starts with the prefix that is to the right of the colon.
Are you sure about that?
1680 data _null_;
1681 if 'Art' eq: 'Arthur' then put 'Hello';
1682 run;
Hello
|