gpt4 book ai didi

php - 使用PHP从字符串中提取域名

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

如何从“AmericanSwan.com Indian Websites”这样的字符串中提取域名?

我尝试了很多选项,但没有一个提供域名。

最佳答案

使用下面的正则表达式从字符串中提取域名,尝试:

$input = 'AmericanSwan.com Indian Websites';
preg_match_all('#[-a-zA-Z0-9@:%_\+.~\#?&//=]{2,256}\.[a-z]{2,4}\b(\/[-a-zA-Z0-9@:%_\+.~\#?&//=]*)?#si', $input, $result);
echo $result[0][0]; //$result will give list of all domain names of string, you can also loop through it

输出:

AmericanSwan.com

关于php - 使用PHP从字符串中提取域名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38429238/

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