Home >Backend Development >PHP Tutorial >求二个正则表达式的改法

求二个正则表达式的改法

WBOY
WBOYOriginal
2016-06-13 10:35:29881browse

求2个正则表达式的改法
读取csv每行数据进行匹配。
$userPattern = "/[0-9]+[\s,\s]+".$testId."/i";
匹配csv的一行:14,test14,0

现在csv的数据改成:14,test14,pwd14,0
上面的正则应该怎么改?
以上谢谢,最好能解释下。

------解决方案--------------------
$userPattern = "/\d+,".$testId.",\w+,\d/i";
------解决方案--------------------

探讨

好的。
但是为什么我以前的那个正则表达式还是可以用的。好像也没问题

------解决方案--------------------
$userPattern = "/[0-9]+,\w+,\w+,[0-9]+/i";
这个正则不行么?
如果需要加空格的话,就在逗号前后加上 \s*
通过preg_match_all 就都可以按照行来读取到一个二维数组
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn