gpt4 book ai didi

PHP,在一个字符串中,如何将两个单词或多个单词放在括号中?

转载 作者:行者123 更新时间:2023-12-04 20:49:31 25 4
gpt4 key购买 nike

在一个字符串中,如何将两个或多个大写字母的单词并排放置在括号中。示例:

   $string = "My name is John Ed, from Canada";

输出如下:(My) name is (John Ed), from (Canada)

最佳答案

第一个想法可能是这样的:

<?php
$str = "My name is John Ed, from Canada";
echo preg_replace("/([A-Z]\\w*)/", "($1)", $str); //(My) name is (John) (Ed), from (Canada)
?>

(John Ed) 的事情应该有点棘手......

关于PHP,在一个字符串中,如何将两个单词或多个单词放在括号中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11982527/

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