gpt4 book ai didi

php - php |通过正则表达式在数组中查找

转载 作者:行者123 更新时间:2023-12-02 05:59:48 26 4
gpt4 key购买 nike

我正在寻找在字符串数组中找到一个字符串的方法:

$array = ['string1'=>'custom', 'other string'=>'another', 'another'=>'again', 'custom'=>'pid|100', 'once again'=>'pid|'];

我需要找到此元素: pid | 100 ;

字符串应包含: pid |任何正整数
foreach($array as $value) { 
// regular expression here
}

如何找到该值?
谢谢!

最佳答案

您想为此使用preg_grep :)

print_r(preg_grep('/^pid\|[0-9]+$/',$array));

关于php - php |通过正则表达式在数组中查找,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30367620/

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