我是 PHP 新手 也许这个问题之前已经被问过,但我不知道要具体搜索什么 无论如何,这就是问题
如果我有一个像这样的字符串:
$adam = "this is a very long long string in here and has a lot of words";
我想在这个字符串中搜索第一次出现的单词“long” 和单词“here”,然后选择它们及其之间的所有内容,并将其存储在新字符串中,因此结果应该是:
$new_string = "long long string in here"
顺便说一句,我不知道字符串的长度和内容,我只知道它有单词
long
和单词 here
,我想要它们之间有单词。
简单的
strpos
,substr
,strlen
就可以了
您的代码可能如下所示
$adam = "this is a very long long string in here and has a lot of words";
$word1="long";
$word2="here";
$first = strpos($adam, $word1);
$second = strpos($adam, $word2);
if ($first < $second) {
$result = substr($adam, $first, $second + strlen($word2) - $first);
}
echo $result;
这是一个工作示例
这是您的脚本,准备复制粘贴;)
$begin=stripos($adam,"long"); //find the 1st position of the word "long"
$end=strripos($adam,"here")+4; //find the last position of the word "here" + 4 caraters of "here"
$length=$end-$begin;
$your_string=substr($adam,$begin,$length);
这是使用正则表达式执行此操作的一种方法:
$string = "this is a very long long string in here and has a lot of words";
$first = "long";
$last = "here";
$matches = array();
preg_match('%'.preg_quote($first).'.+'.preg_quote($last).'%', $string, $matches);
print $matches[0];