Valid in: | DATA step, PROC SQL, and SCL |
Requirement: | The specified locale must be loaded into memory as part of the locale list. |
data _null_; parseDefn=dqMatchInfoGet('Name', 'ENUSA'); tokens=dqParseInfoGet(parseDefn); put parseDefn= / tokens=; run; data _null_; length parsedValue $ 200 matchCode $ 15; parsedValue=dqParseTokenPut(parsedValue, 'Joel', 'Given Name', 'Name'); parsedValue=dqParseTokenPut(parsedValue, 'Alston', 'Family Name', 'Name'); matchCode=dqMatchParsed(parsedValue, 'Name'); put matchCode=; run;