gpt4 book ai didi

php - 链接尚未链接的电子邮件地址

转载 作者:搜寻专家 更新时间:2023-10-31 20:46:50 25 4
gpt4 key购买 nike

我目前正在将电子邮件地址与以下正则表达式进行匹配(并将它们链接为 mailto 链接):

/([a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,64})/

但是,我不想链接之前已经链接为 mailto 链接或现有链接(例如 index.php?email=example@example.com)的任何内容,否则链接像下面这样搞砸了:

<a href="mailto:<a href="mailto:example@example.com">example@example.com</a>"><a href="mailto:example@example.com">example@example.com</a></a>

更新

这是我用来查找电子邮件地址的 PHP 示例(抱歉,认为它不是必需的):

$input = "example@example.com<br><br><a href='mailto:example@example.com'>test email</a><br><br><a href='mailto:example@example.com'>example@example.com</a>";

$output = preg_replace("/([a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,64})/i", "<a href='mailto:$1'>$1</a>", $input);

//output
<a href="mailto:example@example.com">example@example.com</a><br><br><a mailto:example@example.com'="" href="mailto:&lt;a href=">example@example.com</a>'&gt;test email<br><br><a mailto:example@example.com'="" href="mailto:&lt;a href=">example@example.com</a>'&gt;<a href="mailto:example@example.com">example@example.com</a>

更新 2

我还有一个更进一步的正则表达式问题(如果可能的话)- 我也有下面的正则表达式使所有链接都指向一个新窗口,但是,我不想让任何 mailto 链接到一个新窗口 - 是否可以不定位 mailto 链接?

$output = preg_replace("/<(a)([^>]+)>/i", "<\\1 target=\"_blank\"\\2>", str_replace('target="_blank"', '', $output));

最佳答案

这个正则表达式怎么样?

/((?<!mailto:|=|[a-zA-Z0-9._%+-])[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.‌​-]+\.[a-zA-Z]{2,64}(?![a-zA-Z]|<\/[aA]>))/

关于php - 链接尚未链接的电子邮件地址,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12248159/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com