Parses a string.
Category: | Data Quality |
/* Parse (using QKB CI 2013A) */ o = dq.parse("Name", "Mr. John Q Public Sr") /* print all of the tokens available */ print (o & " tokens filled") for i = 1 to o begin dq.token(i, output) print ("token #" & i & " = " & output) dq.value(i, output) print ("value #" & i & " = " & output) end /* Get a token value by the name. */ dq.tokenvalue("Given Name", output) print ("Given Name= " & output)