在 PHP 中使用 preg_match 拆分 CamelCase 单词
要使用 preg_match 将驼峰式单词分解为其组成部分,需要采用与上述方法不同的方法您最初受雇。以下是如何实现所需结果:
更新的正则表达式:
<code class="php">$pattern = '/(?=[A-Z])/';</code>
使用 preg_split:
利用preg_split 函数,根据模式分割字符串,如下:
<code class="php">$arr = preg_split($pattern, $str);</code>
说明:
正则表达式 (?=[A-Z]) 标识每个紧邻大写字母之前的位置。通过这样做,我们有效地在驼峰式单词中建立了分割点。
示例:
假设您将驼峰式单词“oneTwoThreeFour”存储在名为 $str 的变量中。运行上面的代码将产生以下结果:
<code class="php">print_r($arr); // Output: Array ( [0] => one [1] => Two [2] => Three [3] => Four )</code>
这准确地将单词分成其预期的组件。
以上是如何在 PHP 中使用 preg_match 拆分 CamelCase 单词?的详细内容。更多信息请关注PHP中文网其他相关文章!