How can i validate an emailAddressfield in blackberry?
Thanks in advance, I'm a bit stuck.
How can i validate an emailAddressfield in blackberry?
Thanks in advance, I'm a bit stuck.
If we are talking about Java Microedition basic validation is possible through TextField constrain parameter as TextField.EMAILADDR
Example TextField("Email", "", 100, TextField.EMAILADDR)
However I would be wary of this as does check only for basic stuff
Validating EMail addresses (format wise) is very hard, so hard, that one may consider to just don't do it. The recommendation is, at least, to not do it yourself but try to get a library for that task.