电子邮件在 j2me lwuit 中有效

发布于 2024-11-27 23:45:58 字数 92 浏览 0 评论 0原文

我有兴趣知道用户提供的电子邮件是否有效?我尝试使用 Pattern 和 Regex ,但这些类在 lwuit j2me 中不可用,那么在这种情况下如何才能有效的电子邮件?

I am interested to know whether the email provided by user is validate or not ? I try to use Pattern and Regex , but these classes are not available in lwuit j2me so how can I valid email in such case?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

等风来 2024-12-04 23:45:58

检查是否正好有一个 @ 符号,并且正好有一个 . 符号,该 . 位于 @ 之后其间至少有一个字母或数字,. 后面的尾部长度在 2 到 3 个字母之间。某些字母或数字应位于 @ 之前。

Check if there is exactly one @ symbol, and exactly one . symbol, that . is after the @ at least one letter or number in between, and the length of the trailing part after . is between 2 and 3 letters. Some letters or numbers should be before @.

像你 2024-12-04 23:45:58

验证电子邮件地址的唯一方法是发送电子邮件并让用户告诉您电子邮件已到达。

电子邮件地址可能非常非常复杂,因此基于地址字符串的简单检查在任何情况下都不会正确。作为健全性检查,我会检查它是否包含 @ 符号,但仅此而已。

The only way to validate an email address is to send an email and let the user tell you it arrived.

Email addresses can be very very complicated, so no easy check based on the address as a string will be correct in every case. As a sanity check, I'd check if it contains an @ sign, but nothing more.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文