隔离两个字符串之间的字符串[重复]

问题描述 投票:0回答:4

我是 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
,我想要它们之间有单词。

php string substring
4个回答
1
投票

使用这些函数来做到这一点:

  • strpos() - 用它来搜索字符串中的单词
  • substr() - 用它来“剪切”你的字符串
  • strlen() - 用它来获取字符串长度

找到 'long''word' 的位置,然后使用

substr
剪断字符串。


1
投票

简单的

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;

这是一个工作示例


0
投票

这是您的脚本,准备复制粘贴;)

$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);

0
投票

这是使用正则表达式执行此操作的一种方法:

$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];
© www.soinside.com 2019 - 2024. All rights reserved.