<?php
$string = "list page.php?cpage=1, list page.php?cpage=2, list page.php?page=3 thats all";
$string = preg_replace("/\?cpage=[0-9]/", "/", $string);
echo $string;
//result
//list page.php/, list page.php/, list page.php/ thats all
//what i want
//list page.php/1/, list page.php/2/, list page.php/3/ thats all