从文本框中删除除电子邮件地址之外的所有内容
我在 Access Db 中有一个文本框,用户应在其中输入电子邮件地址。这是通过从 Outlook 2010 进行复制来完成的。不幸的是,该副本还带有名称和尖括号,Fred Bloggs <[email protected]>
我希望使用此正则表达式
.pattern = "[\w-\.]{1,}\@([\da-zA-Z-]{1,}\.){1,}[\da-zA-Z-]{2,3}"
来识别电子邮件地址。
如果没有输入有效的电子邮件地址,我将如何删除其他所有内容并引发错误?
I've a text box in an Access Db that the user should enter an email address into. This is done by copying from Outlook 2010. Unfortunately, that copy also brings the Name and angular brackets, Fred Bloggs <[email protected]>
I was hoping to use this regex
.pattern = "[\w-\.]{1,}\@([\da-zA-Z-]{1,}\.){1,}[\da-zA-Z-]{2,3}"
to identify the email address.
How would I strip everything else and throw an error if no valid email address is entered?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Microsoft Access VBA 没有内置的正则表达式引擎。不过,您可以添加对 VBScript 正则表达式库的引用并使用该库。
以下是解释如何执行此操作的相关问题:
Microsoft Access VBA does not have a built-in Regex engine. You can, however, add a reference to the VBScript Regular Expression Library and use that one.
Here's a related question that explains how to do that:
如果电子邮件始终包含在最终的<> 中,您可以
或
编辑;
对于正则表达式检查,添加对“Microsoft VBScript 正则表达式库”的引用(工具 > 引用);
这将返回一个有效的电子邮件地址,如果无效则返回“”。
我把你的 RE 掉了;推理:使用正则表达式验证电子邮件地址< /a>
If the email is always enclosed in the final
<>
you couldor
Edit;
For a regexp check add a reference to the "Microsoft VBScript Regular Expressions library" (tools > references) and;
This returns a valid email address, or "" if its not valid.
I dropped your RE; reasoning: Using a regular expression to validate an email address