June 17, 200916 yr Can anyone give me a simple script which searches thru a given text field and strips out any character accept numbers (zero to nine). Leaving only the numbers in the field. Many thanks
June 17, 200916 yr This should do it: Set Variable [$var; Value: Filter(table::fieldname ; "0123456789" )] Set Field [table::fieldname ; $var ]
June 17, 200916 yr Or just: Set Field [ table::fieldname ; Filter ( table::fieldname ; "0123456789" ) ]
Create an account or sign in to comment