当前位置:  开发笔记 > 编程语言 > 正文

在PHP中随机化RegEx

如何解决《在PHP中随机化RegEx》经验,为你挑选了1个好方法。

基本上我想使用RegEx来抓取文档中各段之间的内容.我认为表达式是:

.+?

假设它使用此RegEx抓取10个项目,然后我希望PHP随机选择其中一个,然后将其保存到变量.有任何想法吗?



1> Greg..:
// Test data
$str = '

a1

b2

c3

d4

'; // Pull out all the paragraph contents into $matches preg_match_all('_

(.+?)

_is', $str, $matches); // $matches[0] contains all the

....

// $matches[1] contains the first group, i.e. our (.+?) // Echo a random one echo $matches[1][array_rand($matches[1])];

推荐阅读
手机用户2402851335
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有