Hi! We've just got access to SAS as a tool, and now I'm trying to translate my previous scripts from SQL. I'm having trouble finding a commando like "rlike" - if anyone could please help me? I've tried to make an example her of what I'm trying to do: PROC SQL; Create table test as Select CreatedDate, DiscountCode, MemberId, ChangedFields from my.source where ChangedFIelds rlike 'discountCode:[0-9][0-9][0-9][0-9][0-9]->null' ORDER BY CreatedDate; So.. How to do this in SAS EG?
... View more