PHP提取字符串中的字符部分的方法

发布时间:2020-07-08编辑:脚本学堂
字符串中有字母,有数字,有其它,需求是:仅提取出字符部分,不要数字等内容。

字符串中有字母,有数字,有其它,需求是:仅提取出字符部分,不要数字等内容。
$str1 = 'abc12';
$str2 = 'edf3';

如何提取变量$str1和$str2中的只是字符部分(从$str1中提取出'abc',从$str2中提取出'edf')?

解决方法:
[tt@root]$ php main.php
[tt@root]$ cat main.php
 

复制代码 代码如下:
<?php
$str = "abc123d45ef6g7";
$n = preg_match_all('/[a-zA-Z]*/', $str, $matches);
if ($n) {
        echo implode("", $matches[0]);
}
?>

附:
取出全部的字母
echo preg_replace('/[^a-z]/i', '', $str1);

只取前边的字母
echo preg_replace('/^([a-z]+).*/i', '$1', $str1);