str1="this is a string"
str2=" this is a string "
我想将str1和str2视为相同的字符串。
我能想到的方式是:
首先修剪弦乐。首先提取每个字符串的单词,比较单词然后得到结果。
任何更好的方式,即bulit-in功能或其他东西来进行比较?
答案 0 :(得分:8)
只需使用preg_replace()
function和trim()
function即可。以下内容:
<?php
$str1 = "this is a string";
$str2 = " this is a string ";
$str1 = preg_replace('/\s+/', ' ', trim($str1));
$str2 = preg_replace('/\s+/', ' ', trim($str2));
var_dump($str1, $str2);
将输出两个相同的字符串:
string(16) "this is a string"
string(16) "this is a string"
请参阅this codepad作为证据。
答案 1 :(得分:2)
$str = preg_replace("/ +/"," ",$str);
出了什么问题?只需将多个空格折叠成一个......
另外,请开始接受旧问题的答案。