$str = "This is a beautiful day";
ereg("\*Some regular expression*\", $str, $match);
for($i=0; $i<count($match); $i++)
print("$match[$i] <br>");
我希望表达式将数组$ match与字符串$ str的每个单词相匹配。当执行for循环时,我希望屏幕看起来像这样:
请不要建议其他方法来解决这个问题,我只是想知道正则表达式是否能够做到这一点,如果是,怎么做?