更新:想通了
答:我想通了。
每个字符后面都有一个隐藏的\0。
解决方法很简单:
trim(str_replace("\0", '', $string))
ASCII 输出:
|0()|84(T)|0()|104(h)|0()|101(e)|0()|32( )|0()|110(n)|0()|117(u)|0()|109(m)|0()|98(b)|0()|101(e)|0()|114(r)|0()|32( )|0()|111(o)|0()|102(f)|0()|32( )|0()|112(p)|0()|101(e)|0()|110(n)|0()|100(d)|0()|105(i)|0()|110(n)|0()|103(g)|0()|32( )|0()|100(d)|0()|101(e)|0()|118(v)|0()|105(i)|0()|99(c)|0()|101(e)|0()|40(()|0()|115(s)|0()|41())|0()|32( )|0()|105(i)|0()|115(s)|0()|32( )|0()|48(0)|0()|46(.)|0()|13(
)|0()|
问题:
这是我正在测试的字符串的一个很好的例子:
$string = "待处理设备的数量为 1。";
string(73) "待处理设备的数量为 1。"
我试图运行的代码是:
$string = "the number of pending device(s) is 1.";
if(strstr($string, "pending"))
{
echo "Found";
}
我一直在测试的另一个是:
$text = "The number of pending device(s) is 1.";
$re1='.*?'; # Non-greedy match on filler
$re2='(?:[a-z][a-z]+)'; # Uninteresting: word
$re3='.*?'; # Non-greedy match on filler
$re4='(?:[a-z][a-z]+)'; # Uninteresting: word
$re5='.*?'; # Non-greedy match on filler
$re6='(?:[a-z][a-z]+)'; # Uninteresting: word
$re7='.*?'; # Non-greedy match on filler
$re8='((?:[a-z][a-z]+))'; # Word 1
$re9='.*?'; # Non-greedy match on filler
$re10='(\\d+)'; # Integer Number 1
if ($c=preg_match_all ("/".$re1.$re2.$re3.$re4.$re5.$re6.$re7.$re8.$re9.$re10."/is", $text, $matches))
{
$word1=$matches[1][0];
$int1=$matches[2][0];
print "($word1) ($int1) \n";
}
现在,如果它只是一个字符串,这将非常有用。我从 Windows DOS 提示符中提取数据,我可以很好地回显数据,但不幸的是,当我尝试通过 preg_match_all 或 strpos 或 strstr 运行数据时,它总是返回 false。这可能是编码问题吗?所有数据都很好地回显到浏览器中。
请帮忙!