如何删除跟随它的所有数字,只保留最后一个

时间:2013-02-22 13:06:15

标签: php regex

我想删除除了最后一个以外的所有数字。

示例:

test test 1 1 1 255 255 test 7.log

我想改造:

test test test 255 7.log

我尝试了很多种组合,但我发现这个结果最好的是:

test test 55 test 7.log

我感谢大家的宝贵帮助,这个网站很棒。

1 个答案:

答案 0 :(得分:0)

如果您需要删除除最后一个以外的所有数字:

$file = "test test 1 1 1 255 255 test 7.log";
list($name, $ext) = explode('.', $file);
// split the file into chunks
$chunks = explode(' ', $name);
$new_chunks = array();
// find all numeric positions
foreach($chunks as $k => $v) {
    if(is_numeric($v)) 
        $new_chunks[] = $k;
}
// remove the last position
array_pop($new_chunks);
// for any numeric position delete if from our list
foreach($new_chunks as $k => $v) {
        unset($chunks[$v]);
}
// merge the chunks again.
$file = implode(' ', $chunks) . '.' .$ext;
var_dump($file);

输出:

string(20) "test test test 7.log"

如果你想删除所有的数字,那么:

$file = "test test 1 1 1 255 255 test 7.log";
list($name, $ext) = explode('.', $file);
$chunks = explode(' ', $name);
$new_chunks = array();
$output = array();
foreach($chunks as $k => $v) {
    if(is_numeric($v)){
        if(!in_array($v, $new_chunks)) {
        $output[] = $v;
        $new_chunks[] = $v;
    }} else 
        $output[] = $v;
}
var_dump(implode(' ', $output). '.' .$ext);

输出:

string(26) "test test 1 255 test 7.log"