用PHP中正则表达式:<?php
$str = "每20分钟增加56元" ;
$str = preg_replace("/(\d+)/", " \\1 ", $str) ;
echo $str ;
?>