预赛比赛句号

发布于 2024-11-18 21:33:22 字数 207 浏览 3 评论 0原文

我正在尝试对每个包含句号的文件运行 preg_match 。

<?php 

$furl = "Maid with the Flaxen Hair.mp3";

if (preg_match("/./i", $furl)) { 

echo "Contains full stop";

}

?>

有人可以帮忙吗???

I am trying to run a preg_match on every file that contains a full stop with it.

<?php 

$furl = "Maid with the Flaxen Hair.mp3";

if (preg_match("/./i", $furl)) { 

echo "Contains full stop";

}

?>

Can someone please help???

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

夜夜流光相皎洁 2024-11-25 21:33:22

交替且快速然后 preg_match

if (strpos($furl, '.') !== false)
{
 echo "Contains full stop";
}

Alternate and also fast then preg_match

if (strpos($furl, '.') !== false)
{
 echo "Contains full stop";
}
初懵 2024-11-25 21:33:22
<?php 

$furl = "Maid with the Flaxen Hair.mp3";

if (preg_match("/\./", $furl)) { 

echo "Contains full stop";

}

?>

在正则表达式中,“.”匹配任何字符。如果您想将其限制为真正的“.”,请使用“\”对其进行转义。

您也不需要 /i,因为不涉及字母。

<?php 

$furl = "Maid with the Flaxen Hair.mp3";

if (preg_match("/\./", $furl)) { 

echo "Contains full stop";

}

?>

In a regexp, '.' matches any character. If you want to limit it to a real '.', escape it with '\'.

You also don't need the /i, since there are no letters involved.

莫相离 2024-11-25 21:33:22

正则表达式中的 . 表示“匹配任何内容”。因此\. 转义它。 (虽然在这种情况下 strpos 可能更快)

. in regular expressions means "Match anything". Escape it thusly \.. (Though strpos is probably faster in this case)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文