我有一个正则表达式来检测任何电子邮件地址 - 我正在尝试创建一个正则表达式,它专门在电子邮件的标题中查找,它计算电子邮件地址并忽略来自特定域 (abc.com) 的电子邮件地址。
例如,有 10 个来自 1@test.com 的电子邮件地址,忽略来自 2@abc.com 的第 11 个地址。
当前正则表达式:
^[A-Z0-9._%+-]+@[A-Z0-9.-]+.[AZ]{2,4}$
我有一个正则表达式来检测任何电子邮件地址 - 我正在尝试创建一个正则表达式,它专门在电子邮件的标题中查找,它计算电子邮件地址并忽略来自特定域 (abc.com) 的电子邮件地址。
例如,有 10 个来自 1@test.com 的电子邮件地址,忽略来自 2@abc.com 的第 11 个地址。
当前正则表达式:
^[A-Z0-9._%+-]+@[A-Z0-9.-]+.[AZ]{2,4}$
考虑以下通用正则表达式的 powershell 示例。
要查找所有电子邮件地址:
<(.*?)>
如果您的服务器用括号括住电子邮件地址,这将很方便(?<!Content-Type(.|\n){0,10000000})([a-zA-Z0-9.!#$%&''*+-/=?\^_``{|}~-]+@(?!abc.com)[a-zA-Z0-9-]+(?:\.[a-zA-Z0-9-]+)*)
如果标题中的所有电子邮件地址都没有括号。请注意,此特定正则表达式是从stackoverflow 201323上的社区 wiki 答案中复制的,并在此处进行了修改以防止@abc.com
. 这个正则表达式可能不适用于某些边缘情况。所以在同一个页面上有一个非常复杂的正则表达式,看起来它会匹配每个电子邮件地址。我没有时间修改那个要跳过的@abc.com
。 $Matches = @()
$String = 'Return-Path: <example_from@abc123.com>
X-SpamCatcher-Score: 1 [X]
Received: from [136.167.40.119] (HELO abc.com)
by fe3.abc.com (CommuniGate Pro SMTP 4.1.8)
with ESMTP-TLS id 61258719 for example_to@mail.abc.com;
Message-ID: <4129F3CA.2020509@abc.com>
Date: Wed, 21 Jan 2009 12:52:00 -0500 (EST)
From: Taylor Evans <Remember@To.Vote>
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.0.1)
X-Accept-Language: en-us, en
MIME-Version: 1.0
To: Jon Smith <example_to@mail.abc.com>
Subject: Business Development Meeting
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 7bit
Content-Type: multipart/alternative;
boundary="------------060102080402030702040100"
This is a multi-part message in MIME format.
--------------060102080402030702040100
Content-Type: text/plain; charset=ISO-8859-15; format=flowed
Content-Transfer-Encoding: 7bit
Hello,
this is an HTML mail, it has *bold*, /italic /and _underlined_ text.
And then we have a table here:
Cell(1,1)
Cell(2,1)
Cell(1,2) Cell(2,2)
And we put a picture here:
Image Alt Text
That''s it.
--------------060102080402030702040100
Content-Type: multipart/related;
boundary="------------030904080004010009060206"
--------------030904080004010009060206
Content-Type: text/html; charset=ISO-8859-15
Content-Transfer-Encoding: 7bit
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html;
charset=ISO-8859-15">
</head>
<body bgcolor="#ffffff" text="#000000">
Hello,<br>
<br>
this is an HTML mail, it has <b>bold</b>, <i>italic </i>and <u>underlined</u>
text.<br>
And then we have a table here:<br>
<table border="1" cellpadding="2" cellspacing="2" height="62"
width="401">
<tbody>
<tr>
<td valign="top">Cell(1,1)<br>
</td>
<td valign="top">Cell(2,1)</td>
</tr>
<tr>
<td valign="top">Cell(1,2)</td>
<td valign="top">Cell(2,2)</td>
</tr>
</tbody>
</table>
<br>
And we put a picture here:<br>
<br>
<img alt="Image Alt Text"
src="cid:part1.FFFFFFFF.5555555@example.com" height="79"
width="98"><br>
<br>
That''s it. email me at test@email.com<br>
Subject: <br>
</body>
</html>'
# Write-Host start with
# write-host $String
Write-Host
Write-Host found
[array]$Found = ([regex]'(?<!Content-Type(.|\n){0,10000000})([a-zA-Z0-9.!#$%&''*+-/=?\^_`{|}~-]+@(?!abc.com)[a-zA-Z0-9-]+(?:\.[a-zA-Z0-9-]+)*)').matches($String)
$Found | foreach {
write-host "key at $($_.Groups[1].Index) = '$($_.Groups[1].Value)'"
} # next match
Write-Host "found $($Found.count) matching addresses"
found
key at 14 = 'example_from@abc123.com'
key at 200 = 'example_to@mail.abc.com'
key at 331 = 'Remember@To.Vote'
key at 485 = 'example_to@mail.abc.com'
found 4 matching addresses
(?<!Content-Type(.|\n){0,10000000})
防止Content-Type
出现在电子邮件地址之前的 10,000,000 个字符内。这具有防止邮件正文中的电子邮件地址匹配的效果。因为请求者正在使用 Java,而 Java 不支持在*
我正在使用的后视中使用 a {0,10000000}
。(另请参阅Regex 看后没有明显的 Java 最大长度)。请注意,这可能会引入一些可能无法按预期捕获的边缘情况。<(.*?@(?!abc.com).*?)>
(
开始返回[a-zA-Z0-9.!#$%&''*+-/=?\^_``{|}~-]+
匹配 1 个或多个允许的字符。双单引号是为了转义powershell的单引号字符。并且双反引号逃脱了stackoverflow的反引号。@
包括第一个 at 标志(?!abc.com)
拒绝查找,如果它包括abc.com
[a-zA-Z0-9-]+
继续寻找所有剩余的非贪婪字符,直到字符串的第一个点或结尾。(?:\.[a-zA-Z0-9-]+)*)
继续寻找字符块,后跟一个点