20

我有一列人们手动输入电子邮件地址。我想使用以下公式验证电子邮件地址:

=AND(FIND(“@”,A2),FIND(“.”,A2),ISERROR(FIND(” “,A2)))

但是 excel 出现错误,您键入的公式包含错误。对我来说,这个公式看起来是对的。你们有什么建议吗?

4

4 回答 4

24

我的代码出现了同样的错误,而且您似乎没有“普通”双引号,这与此符号不同:"

试试我的拼写:=AND(FIND("@",A2),FIND(".",A2),ISERROR(FIND(" ",A2)))- 希望会有所帮助!

编辑:

此外,请考虑使用=AND(NOT(ISERROR(FIND("@",A1))),NOT(ISERROR(FIND(".",A1))),ISERROR(FIND(" ",A1)))- 以防止出现错误@.丢失。尽管如此,这将通过 OK aaa@.,但我想即使是这种直接的方法也有权使用)

于 2013-01-23T15:09:11.487 回答
11

在 excel 中验证电子邮件的另一种方法是使用 VBA 代码:请参阅下面的代码,取自http://www.vbaexpress.com/kb/getarticle.php?kb_id=281,它工作得很好,您可以修改基于代码根据您的需要。

Sub email() 
Dim txtEmail As String 
txtEmail = InputBox("Type the address", "e-mail address") 

Dim Situacao As String 

 ' Check e-mail syntax
If IsEmailValid(txtEmail) Then 
    Situacao = "Valid e-mail syntax!" 
Else 
    Situacao = "Invalid e-mail syntax!" 
End If 
 ' Shows the result
MsgBox Situacao 
End Sub 
Function IsEmailValid(strEmail) 
Dim strArray As Variant 
Dim strItem As Variant 
Dim i As Long, c As String, blnIsItValid As Boolean 
blnIsItValid = True 

i = Len(strEmail) - Len(Application.Substitute(strEmail, "@", "")) 
If i <> 1 Then IsEmailValid = False: Exit Function 
ReDim strArray(1 To 2) 
strArray(1) = Left(strEmail, InStr(1, strEmail, "@", 1) - 1) 
strArray(2) = Application.Substitute(Right(strEmail, Len(strEmail) - Len(strArray(1))), "@", "") 
For Each strItem In strArray 
    If Len(strItem) <= 0 Then 
        blnIsItValid = False 
        IsEmailValid = blnIsItValid 
        Exit Function 
    End If 
    For i = 1 To Len(strItem) 
        c = LCase(Mid(strItem, i, 1)) 
        If InStr("abcdefghijklmnopqrstuvwxyz_-.", c) <= 0 And Not IsNumeric(c) Then 
            blnIsItValid = False 
            IsEmailValid = blnIsItValid 
            Exit Function 
        End If 
    Next i 
    If Left(strItem, 1) = "." Or Right(strItem, 1) = "." Then 
        blnIsItValid = False 
        IsEmailValid = blnIsItValid 
        Exit Function 
    End If 
Next strItem 
If InStr(strArray(2), ".") <= 0 Then 
    blnIsItValid = False 
    IsEmailValid = blnIsItValid 
    Exit Function 
End If 
i = Len(strArray(2)) - InStrRev(strArray(2), ".") 
If i <> 2 And i <> 3 Then 
    blnIsItValid = False 
    IsEmailValid = blnIsItValid 
    Exit Function 
End If 
If InStr(strEmail, "..") > 0 Then 
    blnIsItValid = False 
    IsEmailValid = blnIsItValid 
    Exit Function 
End If 
IsEmailValid = blnIsItValid 
End Function 

有关如何说明检查http://www.vbaexpress.com/kb/getarticle.php?kb_id=281#instr

于 2013-06-10T20:44:01.297 回答
4

我遇到了一个问题firstname.lastname@domain@topdomain,我对此进行了修改,检查了正确的顺序@和不带 VBA.的隐式。Like

=AND(NOT(ISERROR(VLOOKUP("*@*.*",A2,1,FALSE))),ISERROR(FIND(" ",A2)))


"*?@?*.??*"只要顶级域至少有两个字符长(截至本文为止),EDIT似乎更具描述性。

于 2015-08-26T13:39:24.347 回答
1

=AND(IFERROR(FIND(".",A2),FALSE),IFERROR(FIND(".",A2,FIND("@",A2)),FALSE))

这将验证 . 在未在接受的答案上测试的 @ 之后

于 2017-01-25T11:27:26.293 回答