0

我有一个有效的解析脚本。我将大部分工作外包,但只剩下一小部分。我正在解析的页面呈现一个没有空格的邮政编码(这是不正确的)。所以,我需要在第三个字符之后插入空格。我知道执行此操作的字符串,只是不知道如何将其放入此代码部分:

if(preg_match('/postal: (.*),/', $tempscript, $matches))
$temppostcode = $matches[1];
$postcode=str_replace('"','',substr($temppostcode,0,strpos($temppostcode,'", ')));

我试图放入上述部分的字符串:

$postcode = str_replace(' ','',$postcode);
$postcode = wordwrap($postcode, strlen($postcode)-3,' ', true);

我只是不知道将它放在第一部分的哪个位置以使其工作,或者我有什么替代方案。

4

0 回答 0