非常简单,但我无法确切地使用语法。
我只想要一个真或假的检查来查看一个字符串是否有'for the'(不区分大小写)。
答案 0 :(得分:15)
如果只是这样,那么你可以使用纯文本搜索:
if (stripos("for the", $text) === 0) { // case-insensitive here
// string starts with "for the"
}
或者,
if (substr($text, 0, 7) == "for the")
下面的评论让我想知道哪个实际上更快,所以我写了一些基准测试。
这是TLDR版本:
strpos
真的很快。strncmp
可靠且快速。preg_match
永远不是一个好选择。这是长版:
return strpos($haystack, $needle) === 0
return preg_match("/^$needle/", $haystack) === 1
return substr($haystack, 0, strlen($needle)) === $needle
return strncmp($needle, $haystack, strlen($needle)) === 0
for ($i = 0, $l = strlen($needle); $i < $l; ++$i) {
if ($needle{$i} !== $haystack{$i}) return false;
}
return true;
有趣的观点:
strpos
在针对短草堆的长而完全不匹配的针上。
strpos
记录了前11次。strpos
表现最佳,但长草堆上长长的不匹配针使其受压。它们比大多数测试慢5-10倍。strncmp
快速且最为一致。preg_match
一直比其他功能慢约2倍Haystack: 83 characters
______________________________________________________________
____________|__________ non-matching ___________|_______ matching ________|
| function | 1 | 5 | 82 | 83 | 1 | 5 | 83 |
|------------+--------+--------+--------+--------+--------+--------+--------|
| manual | 0.2291 | 0.2222 | 0.2266 | 4.1523 | 0.2337 | 0.4263 | 4.1972 |
| preg_match | 0.3622 | 0.3792 | 0.4098 | 0.4656 | 0.3642 | 0.3694 | 0.4658 |
| strncmp | 0.1860 | 0.1918 | 0.1881 | 0.1981 | 0.1841 | 0.1857 | 0.1980 |
| strpos | 0.1596 | 0.1633 | 0.1537 | 0.1560 | 0.1571 | 0.1589 | 0.1681 |
| substr | 0.2052 | 0.2066 | 0.2009 | 0.2166 | 0.2061 | 0.2017 | 0.2236 |
-----------------------------------------------------------------------------
Haystack: 10000 characters
______________________________________________________________
____________|__________ non-matching ___________|_______ matching ________|
| function | 1 | 5 | 82 | 83 | 1 | 5 | 83 |
|------------+--------+--------+--------+--------+--------+--------+--------|
| manual | 0.2275 | 0.2249 | 0.2278 | 4.1507 | 0.2315 | 0.4233 | 4.1834 |
| preg_match | 0.3597 | 0.3628 | 0.4147 | 0.4654 | 0.3662 | 0.3679 | 0.4684 |
| strncmp | 0.1886 | 0.1914 | 0.1835 | 0.2014 | 0.1851 | 0.1854 | 0.1989 |
| strpos | 0.1605 | 2.1877 | 2.3737 | 0.5933 | 0.1575 | 0.1597 | 0.1667 |
| substr | 0.2073 | 0.2085 | 0.2017 | 0.2152 | 0.2036 | 0.2090 | 0.2183 |
-----------------------------------------------------------------------------
答案 1 :(得分:3)
您想使用^
来表示字符串的开头:
$string_one = "For the love of Mike";
$string_two = "for the amazing reason.";
$match = preg_match("/^for the/i", $string_one); // Outputs 1
$match = preg_match("/^for the/i", $string_two); // Outputs 1
/i
是使搜索不区分大小写的部分。
答案 2 :(得分:2)
怎么样
if(preg_match("/^for the/", $yourString))
{
return true;
}
else
{
return false;
}
请注意^
的代码与字符串的开头匹配。
答案 3 :(得分:0)
如果你有read the first example in the documentation,你会看到答案。
if ( preg_match('/^for the/i', $sentence) )
{
// a match was found
}
答案 4 :(得分:0)
正则表达式为/^for the/i