编程语言
首页 > 编程语言> > php – camelCase to dash – 彼此相邻的两个首都

php – camelCase to dash – 彼此相邻的两个首都

作者:互联网

我正在使用此函数将CamelCase转换为虚线字符串:

function camel2dashed($className) {
    return strtolower(preg_replace('/([^A-Z-])([A-Z])/', '$1-$2', $className));
}

它有点工作但是当我有前任时有问题.这个字符串:getADog.它返回get-adog,但我想要得到一只狗

我该如何更改我的代码?谢谢

解决方法:

使用lookahead assertion

function camel2dashed($className) {
    return strtolower(preg_replace('/([a-zA-Z])(?=[A-Z])/', '$1-', $className));
}

看到它在线工作:ideone

标签:camelcasing,php,regex
来源: https://codeday.me/bug/20191006/1861641.html