php字符中加逗号,php – regexp使用逗号(,)分隔符分割字符串,但如果逗号是大括号{,}则忽略...

我需要一个正则表达式来使用逗号(,)分隔符来分割字符串,但是如果逗号在下面的示例中是花括号{,}则忽略;

"asd", domain={"id"="test"}, names={"index"="user.all", "show"="user.view"}, test="test"

INTO(应该是)

"asd"

domain={"id"="test"}

names={"index"="user.all", "show"="user.view"}

test="test"

问题:(不是这个)

"asd"

domain={"id"="test"}

names={"index"="user.all"

"show"="user.view"}

test="test"

我尝试了这个,但它也在括号内分隔逗号{,}

\{[^}]*}|[^,]+

但我完全不知道这应该如何最终结束.

任何帮助都会得到满足!

解决方法:

我看到了可能性(不会因长字符串而崩溃):

第一个使用preg_match_all:

$pattern = '~

(?:

\G(?!\A), # contigous to the previous match, not at the start of the string

| # OR

\A ,?? # at the start of the string or after the first match when

# it is empty

)\K # discard characters on the left from match result

[^{,]*+ # all that is not a { or a ,

(?:

{[^}]*}? [^{,]* # a string enclosed between curly brackets until a , or a {

# or an unclosed opening curly bracket until the end

)*+

~sx';

if (preg_match_all($pattern, $str, $m))

print_r($m[0]);

第二个使用preg_split和backtracking控制动词来避免大括号之间的部分(较短但效率较低的长字符串):

$pattern = '~{[^}]*}?(*SKIP)(*F)|,~';

print_r(preg_split($pattern, $str));

(* F)强制模式失败并且(* SKIP)强制正则表达式引擎跳过模式失败时已经匹配的部分.

最后一种方法的缺点是模式以交替开始.这意味着对于不是{或a}的每个字符,都会测试交替的两个分支(什么都不是).但是,您可以使用S(学习)修改器改进模式:

$pattern = '~{[^}]*}?(*SKIP)(*F)|,~S';

或者您可以在没有替换的情况下编写它,如下所示:

$pattern = '~[{,](?:(?<={)[^}]*}?(*SKIP)(*F))?~';

以这种方式,具有{或者之前使用比正则动态引擎的正常步行更快的算法搜索的位置.

标签:preg-split,php

来源: https://codeday.me/bug/20190829/1761252.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值