字符串中有字母,有数字,有其它,需求是:仅提取出字符部分,不要数字等内容。
$str1 = 'abc12';
$str2 = 'edf3';
如何提取变量$str1和$str2中的只是字符部分(从$str1中提取出'abc',从$str2中提取出'edf')?
解决方法:
[tt@root]$ php main.php
[tt@root]$ cat main.php
附:
取出全部的字母
echo preg_replace('/[^a-z]/i', '', $str1);
只取前边的字母
echo preg_replace('/^([a-z]+).*/i', '$1', $str1);