Lets say I've a following strings
可以说我有以下字符串
$string1 = 'hello world my name is'
and
$string2 = '"hello world" my name is'
using this with string1:
与string1一起使用:
preg_match_all('/"(?:\\\\.|[^\\\\"])*"|\S+/', $string1, $matches);
I get an array:
我得到一个数组:
echo $matches[0][0]//hello
echo $matches[0][1] //world
using the same but with string2:
使用相同但使用string2:
preg_match_all('/"(?:\\\\.|[^\\\\"])*"|\S+/', $string2, $matches);
I get an array:
我得到一个数组:
echo $matches[0][0] //"hello world"
echo $matches[0][1] //my
but if my string is:
但如果我的字符串是:
" hello world " my name is
//^^ ^^(notice the spaces at beginning and end ),
I would get:
我会得到:
echo $matches[0][0] //" hello world "
when I really want to get
当我真的想要得到
"hello world"
how to modify the first argument in preg_match_all
? any other simple solution? thanks
如何修改preg_match_all中的第一个参数?还有其他任何简单的解谢谢
1 个解决方案
#1
2
Try below code:
试试以下代码:
$string = '" hello world " my name is';
$string = preg_replace('/"\s*(.*?)\s*"/', '"$1"', $string);
echo ($string);
echo "<br />";
// OUTPUt : "hello world" my name is
preg_match_all('/"(?:\\.|[^\\"])*"|\S+/', $string, $matches);
print_r($matches);
// OUTPUt : Array ( [0] => Array ( [0] => "hello world" [1] => my [2] => name [3] => is ) )
echo implode(' ', $matches[0]);
// OUTPUt : "hello world" my name is
#1
2
Try below code:
试试以下代码:
$string = '" hello world " my name is';
$string = preg_replace('/"\s*(.*?)\s*"/', '"$1"', $string);
echo ($string);
echo "<br />";
// OUTPUt : "hello world" my name is
preg_match_all('/"(?:\\.|[^\\"])*"|\S+/', $string, $matches);
print_r($matches);
// OUTPUt : Array ( [0] => Array ( [0] => "hello world" [1] => my [2] => name [3] => is ) )
echo implode(' ', $matches[0]);
// OUTPUt : "hello world" my name is