LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (March 1999, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Thu, 4 Mar 1999 15:36:09 +0100
Reply-To:     adolf-a.quast@DB.COM
Sender:       "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU>
From:         Adolf Quast <adolf-a.quast@DB.COM>
Subject:      Antwort: Partial-key matching
Content-type: text/plain; charset=us-ascii

Hello,

it seems that you need s. th. like the '=:' operator:

Example:

data TEST ;

key = '45676' ; output ; key = '4' ; output ; key = '1234354' ; output ;

run ;

proc print ; where key =: '4' ; run ;

proc print ; where key =: '12' ; run ;

Greeting

Adolf Quast


Back to: Top of message | Previous page | Main SAS-L page