我的字符串是:“reply-234-private”,我想得到“reply-”之后和“-private”之前的数字,它是“234”。我尝试使用以下代码,但它返回一个空结果:
$string = 'reply-234-private';
$display = preg_replace('/reply-(.*?)-private/','',$string);
echo $display;
我的字符串是:“reply-234-private”,我想得到“reply-”之后和“-private”之前的数字,它是“234”。我尝试使用以下代码,但它返回一个空结果:
$string = 'reply-234-private';
$display = preg_replace('/reply-(.*?)-private/','',$string);
echo $display;
你可以爆炸它:
<?php
$string = 'reply-234-private';
$display = explode('-', $string);
var_dump($display);
// prints array(3) { [0]=> string(5) "reply" [1]=> string(3) "234" [2]=> string(7) "private" }
echo $display[1];
// prints 234
或者,使用preg_match
<?php
$string = 'reply-234-private';
if (preg_match('/reply-(.*?)-private/', $string, $display) === 1) {
echo $display[1];
}
像这样的东西:
$myString = 'reply-234-private';
$myStringPartsArray = explode("-", $myString);
$answer = $myStringPartsArray[1];
本文向您展示如何获取两个标签或两个字符串之间的所有字符串。
http://okeschool.com/articles/312/string/how-to-get-of-everything-string-between-two-tag-or-two-strings
<?php
// Create the Function to get the string
function GetStringBetween ($string, $start, $finish) {
$string = " ".$string;
$position = strpos($string, $start);
if ($position == 0) return "";
$position += strlen($start);
$length = strpos($string, $finish, $position) - $position;
return substr($string, $position, $length);
}
?>
如果你的问题,你可以试试这个:
$string1='reply-234-private';
echo GetStringBetween ($string1, "-", "-")
或者我们可以使用任何“标识符字符串”来获取标识符字符串之间的字符串。例如:
echo GetStringBetween ($string1, "reply-", "-private")
使用 php 的内置正则表达式支持函数 preg_match_all
这将有所帮助,假设您想要在以下示例中 @@ 之间的字符串(键)数组,其中 '/' 不介于两者之间,您可以使用不同的开始和结束变量构建新示例
function getInbetweenStrings($start, $end, $str){
$matches = array();
$regex = "/$start([a-zA-Z0-9_]*)$end/";
preg_match_all($regex, $str, $matches);
return $matches[1];
}
$str = "C://@@ad_custom_attr1@@/@@upn@@/@@samaccountname@@";
$str_arr = getInbetweenStrings('@@', '@@', $str);
print_r($str_arr);
$myString = 'reply-234-private';
echo str_replace('-','',filter_var($myString,FILTER_SANITIZE_NUMBER_INT));
那应该做的工作。
如果你想在 js 中做,试试这个功能 -
function getStringBetween(str , fromStr , toStr){
var fromStrIndex = str.indexOf(fromStr) == -1 ? 0 : str.indexOf(fromStr) + fromStr.length;
var toStrIndex = str.slice(fromStrIndex).indexOf(toStr) == -1 ? str.length-1 : str.slice(fromStrIndex).indexOf(toStr) + fromStrIndex;
var strBtween = str.substring(fromStrIndex,toStrIndex);
return strBtween;
}