gpt4 book ai didi

php - 如何从字符串中获取特定值

转载 作者:可可西里 更新时间:2023-11-01 00:04:49 25 4
gpt4 key购买 nike

我在尝试从字符串中提取特定值但未获得正确输出时遇到问题。

$string = com.xyz.ghop.service.sprint.Sprint@1b0258c[id=257,rapidViewId=94,state=CLOSED,name=Alert Success 5,goal=,startDate=2016-08-16T20:20:46.730+05:30,endDate=2016-08-26T20:20:00.000+05:30,completeDate=2016-08-26T21:18:53.928+05:30,sequence=257]

我想要 name= 中的值直到逗号,我尝试使用 preg_match_all 但它只给出了第一个词。

这是我尝试过的:

preg_match_all("/(?=name\=([^\W]+))/", $string, $matches); 
$resulte = implode(",", $matches[1]);

请帮忙

谢谢

最佳答案

有多种方法,可用于preg_match 或preg_match_all

$results = preg_match('#name=(.*?),#', $matches);

$results = preg_match('#name=([^,]+),#', $matches);

关于php - 如何从字符串中获取特定值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42609468/

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