>Can anyone tell me, is there an easy way to delete all characters
>other than numbers from a field member?
There's lots of ways. For example:
newtext = ""
t = member("text field").text
c = the number of chars in t
repeat with a = 1 to c
if "1234567890" contains char a of t then put char a of t after newtext
end repeat
member("text field").text = newtext
--
[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi To post messages to the list,
email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo. Thanks!]