正则表达式:用''替换所有''除小写

时间:2013-06-04 21:49:31

标签: php regex preg-replace

我有一个字符串,例如/test/我想只保留小写字母。 我怎样才能使用preg_replace

$string = '/test/';
$new_string = preg_replace('?????', '', $string);
$new_string = 'test';

1 个答案:

答案 0 :(得分:5)

这比你想象的要简单:

$string = preg_replace('/[^a-z]/', '', $string);