44

是否有一个 PHP 函数可以在字符串中的 2 个不同字符之间提取一个短语?类似的东西substr();

例子:

$String = "[modid=256]";

$First = "=";
$Second = "]";

$id = substr($string, $First, $Second);

因此$id将是256

任何帮助,将不胜感激 :)

4

11 回答 11

68

使用此代码

$input = "[modid=256]";
preg_match('~=(.*?)]~', $input, $output);
echo $output[1]; // 256

工作示例http://codepad.viper-7.com/0eD2ns

于 2013-02-15T09:40:03.957 回答
27

利用:

<?php

$str = "[modid=256]";
$from = "=";
$to = "]";

echo getStringBetween($str,$from,$to);

function getStringBetween($str,$from,$to)
{
    $sub = substr($str, strpos($str,$from)+strlen($from),strlen($str));
    return substr($sub,0,strpos($sub,$to));
}

?>
于 2013-09-08T05:52:47.730 回答
4
$String = "[modid=256]";

$First = "=";
$Second = "]";

$Firstpos=strpos($String, $First);
$Secondpos=strpos($String, $Second);

$id = substr($String , $Firstpos, $Secondpos);
于 2013-02-15T09:41:52.870 回答
3

如果您不想使用正则表达式,请使用strstrtrimstrrev函数:

// Require PHP 5.3 and higher
$id = trim(strstr(strstr($String, '='), ']', true), '=]');

// Any PHP version
$id = trim(strrev(strstr(strrev((strstr($String, '='))), ']')), '=]');
于 2013-02-15T11:09:18.870 回答
2

正则表达式是你的朋友。

preg_match("/=(\d+)\]/", $String, $matches);
var_dump($matches);

这将匹配任何数字,对于其他值,您将不得不对其进行调整。

于 2013-02-15T09:39:32.260 回答
1

您可以使用正则表达式:

<?php
$string = "[modid=256][modid=345]";
preg_match_all("/\[modid=([0-9]+)\]/", $string, $matches);

$modids = $matches[1];

foreach( $modids as $modid )
  echo "$modid\n";

http://eval.in/9913

于 2013-02-15T09:41:40.553 回答
1
$str = "[modid=256]";
preg_match('/\[modid=(?P<modId>\d+)\]/', $str, $matches);

echo $matches['modId'];
于 2013-02-15T09:42:09.300 回答
0

(从评论中移出,因为在这里格式化更容易)

可能是一种懒惰的方法,但在这种情况下,我通常会首先像这样爆炸我的字符串:

$string_array = explode("=",$String); 

在第二步中,我可能会通过 rtrim 摆脱那个“]”:

$id = rtrim($string_array[1], "]");

...但这在结构始终完全相同的情况下才有效...

-干杯-

ps:它实际上不应该是$String = "[modid=256]"; ?

于 2013-02-15T09:48:08.107 回答
0

尝试正则表达式

$String =" [modid=256]";
$result=preg_match_all('/(?<=(=))(\d+)/',$String,$matches);
print_r($matches[0]);

输出

数组( [0] => 256 )

演示

解释 这里它在正则表达式中使用了正则表达式 (?<=) 后面的正向查找,例如 (?<=foo)bar 匹配 bar 前面有 foo 时,这里 (?<=(=))(\d+) 我们匹配 (\d+ ) 就在 '=' 符号之后。\d 匹配任何数字字符 (0-9)。+ 匹配 1 个或多个前面的令牌

于 2013-02-15T09:48:51.047 回答
0

我认为这是获取字符串的方法:

<?php
function get_string_between($string, $start, $end){
    $string = ' ' . $string;
    $ini = strpos($string, $start);
    if ($ini == 0) return '';
    $ini += strlen($start);
    $len = strpos($string, $end, $ini) - $ini;
    return substr($string, $ini, $len);
}


$fullstring = '.layout { 

color: {{ base_color }} 

}

li { 

color: {{ sub_color }} 

} 

.text { 

color: {{ txt_color }}

 }

 .btn { 

color: {{ btn_color }}

 }

.more_text{

color:{{more_color}}

}';

  $parsed = get_string_between($fullstring, '{{', '}}');
  echo $parsed;
?>
于 2021-06-08T13:19:39.917 回答
-1

您可以使用正则表达式,也可以试试这个:

$String = "[modid=256]";

$First = "=";
$Second = "]";
$posFirst = strpos($String, $First); //Only return first match
$posSecond = strpos($String, $Second); //Only return first match

if($posFirst !== false && $posSecond !== false && $posFirst < $posSecond){
    $id = substr($string, $First, $Second);
}else{
//Not match $First or $Second
}

您应该阅读有关 substr 的信息。最好的方法是正则表达式。

于 2013-02-15T09:51:52.947 回答