我正在尝试在 preg_match_all 中的 PHP 中使用这个 reg exp
/\d+ (?:<[^>]+>)(?:<[^>]+>)(\S+.*\S+)(?:<[^>]+>)\s*(\S+) (?:L|R)\s*\w* \w*\s*(?:\w+\s*){14}(\d+)\s*(\d)\s*(\d*\xA0*\d{3}\xA0*\d{3})/is
有一些数据样本:
38 <A NAME="Philip McRae"><A HREF="xtrastats.html#Philip McRae">Philip McRae</A> C L OK 58 71 69 49 33 89 71 45 48 69 50 35 32 61 21 3 787 000
43 <A NAME="Alexander Nikulin"><A HREF="xtrastats.html#Alexander Nikulin">Alexander Nikulin</A> C L OK 41 68 71 40 28 90 67 29 31 60 31 37 34 50 26 0 0 000 <a href="http://www.hockeydb.com/ihdb/stats/pdisplay.php?pid=78680" target="_blank">HDB</a>
20 <A NAME="Christian Hanson"><A HREF="xtrastats.html#Christian Hanson">Christian Hanson</A> C R OK 57 72 71 54 33 79 70 42 45 71 46 40 36 60 25 1 875 000 <a href="http://www.hockeydb.com/ihdb/stats/pdisplay.php?pid=73824" target="_blank">HDB</a>
我得到了大约1500行。
我需要匹配这个:
Philip McRae, C, 21, 3, 787 000 (Name, Position, Age, Contract Lenght, Salary)
每次我运行我的代码时,我都会收到一个致命错误:Maximum execution time of 30 seconds exceeded 错误。
经过一番搜索后,我在脚本顶部添加了这一行,但这并不能解决我的问题
ini_set("pcre.backtrack_limit",10000000);
任何人都可以用这个 reg exp 帮助我进行一些优化吗?
问候。
帕特里克