$name = 'billy, jole';
if (preg_match('/^[a-zA-Z,]+ ([a-zA-Z]+)/',$name ,$yes)){
print preg_replace('/(^[a-zA-Z,]+), ([a-zA-Z])+/','<a href="mailto:$1@ccsf.edu"></a>', $name);
}
输出是:
<a href="mailto:billy@ccsf.edu"></a>
但我需要缩写为 jbilly 的名字,所以输出如下所示:
<a href="mailto:jbilly@ccsf.edu"></a>
有人可以帮帮我吗?我是正则表达式的新手?