Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: lnasonI'm still not sure I understand exactly what you are trying to implement. Having said that, based on the sample values you provided you could do the following to flag values with the string "0000"....
GoodRecord = False
if 'DATA'.regexIsMatch("0000") then {GoodRecord = True}
.....but you could also just use the "strFind" function as follows:
GoodRecord = False
if ('DATA'.strFind("0000") > -1) then {GoodRecord = True}