考虑到中间空格的php字符串比较

时间:2011-11-06 05:21:33

标签: php

在php中我需要比较2个字符串。

str1="this is             a       string"
str2=" this is a string  "

我想将str1和str2视为相同的字符串。

我能想到的方式是:

首先修剪弦乐。首先提取每个字符串的单词,比较单词然后得到结果。

任何更好的方式,即bulit-in功能或其他东西来进行比较?

2 个答案:

答案 0 :(得分:8)

只需使用preg_replace() functiontrim() 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);出了什么问题?只需将多个空格折叠成一个......

另外,请开始接受旧问题的答案。