gpt4 book ai didi

php - PHP 中的正则表达式 : find the first matching string

转载 作者:可可西里 更新时间:2023-10-31 22:49:29 24 4
gpt4 key购买 nike

我想在非常非常长的文本中找到第一个匹配的字符串。我知道我可以使用 preg_grep() 并获取返回数组的第一个元素。但是如果我只需要第一场比赛(或者我知道提前只有一场比赛),这样做效率不高。有什么建议吗?

最佳答案

preg_match()

preg_match() returns the number of times pattern matches. That will be either 0 times (no match) or 1 time because preg_match() will stop searching after the first match. preg_match_all() on the contrary will continue until it reaches the end of subject. preg_match() returns FALSE if an error occurred.

关于php - PHP 中的正则表达式 : find the first matching string,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2709917/

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