gpt4 book ai didi

php - REGEX:逗号之间的分隔符

转载 作者:行者123 更新时间:2023-11-29 14:05:37 24 4
gpt4 key购买 nike

可能是 duplicate

我正在使用 PHP 和 postgres。

如何分隔下表中的单词?最大字数为 7。

word_1, word_2, word_3, ...

最佳答案

你可以调用爆炸。

$string = 'word_1, word_2, ...';
$splitarr = explode(',' $string);

然后你可以像这样从 arr 中获取值:$splitarr[0] ... $splitarr[6]。

Split 在这种情况下比 explode 稍慢,因为 split 采用正则表达式。 http://blog.brianhartsock.com/2007/06/11/php-explode-vs-split/

关于php - REGEX:逗号之间的分隔符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1244866/

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