regex to match an exact string

人走茶凉 提交于 2019-12-25 03:47:07

问题


Using php, what is the regex to match an exact string.

Say we have the text:

Hello, world. 

How are you today?

Today is sunshine and snow wouldn't you know.

How would I use regex to match the string?:

sunshine and snow

回答1:


Using preg_match:

<?php
// The "i" after the pattern delimiter indicates a case-insensitive search
if (preg_match("/php/i", "PHP is the web scripting language of choice.")) {
    echo "A match was found.";
} else {
    echo "A match was not found.";
}
?>

Using strpos:

<?php
$mystring = 'abc';
$findme   = 'a';
$pos = strpos($mystring, $findme);

// Note our use of ===.  Simply == would not work as expected
// because the position of 'a' was the 0th (first) character.
if ($pos === false) {
    echo "The string '$findme' was not found in the string '$mystring'";
} else {
    echo "The string '$findme' was found in the string '$mystring'";
    echo " and exists at position $pos";
}
?>


来源:https://stackoverflow.com/questions/14818818/regex-to-match-an-exact-string

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!