gpt4 book ai didi

php - 在 camelCased 字符串中的单词之间添加空格,然后大写第一个单词

转载 作者:行者123 更新时间:2023-12-02 05:25:05 24 4
gpt4 key购买 nike

我有两种类型的字符串,hellohelloThere

我想要的是改变它们,使它们看起来像:HelloHello There 视情况而定。

这样做的好方法是什么?

最佳答案

将 CamelCase 转换为不同的单词:

preg_replace('/([^A-Z])([A-Z])/', "$1 $2", $string)

将所有单词的第一个字母大写:

ucwords()

所以在一起:

ucwords(preg_replace('/([^A-Z])([A-Z])/', "$1 $2", $string))

关于php - 在 camelCased 字符串中的单词之间添加空格,然后大写第一个单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3415906/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com