我正在尝试检索所有匹配,但我只收到一个
这是我的字符串
$html = '<p> This is my Home Page.</p><p><span style="line-height: 1.42857;">{{ type="slider" }} </span></p><p> </p>';
如果你看到字符串包含{{ type="slider" }}
,现在如果我只在我得到预期结果时写了这个字符串,
但如果我在html sting中多次写它{{ type="slider" }}
{{ type="banned" }}
{{ type="testimonial" }}
$html = '<p> This is my Home Page.</p><p><span style="line-height: 1.42857;">{{ type="slider" }} {{ type="banner" }} {{ type="testimonial" }} </span></p><p> </p>';
并尝试获取字符串{{ type=" ???? " }}
中的值,它显示了奇怪的结果
我正在使用以下代码。
preg_match_all('/{{ type=\"(.+)\" }}/', $html, $matches, PREG_SET_ORDER);
echo "<pre>";
print_r($matches);
foreach ($matches as $val) {
echo "matched: ". $val[0] . "<br/>";
echo "My Value" . $val[1] . "<br/>";
}
当前结果:
Array
(
[0] => Array
(
[0] => {{ type="slider" }} {{ type="banner" }} {{ type="testimonial" }}
[1] => slider" }} {{ type="banner" }} {{ type="testimonial
)
)
matched: {{ type="slider" }} {{ type="banner" }} {{ type="testimonial" }}
My Value : slider" }} {{ type="banner" }} {{ type="testimonial
我希望数组中的结果包含{{ type="
和" }}
之间的值
仅{{ type="slider" }}
我得到的结果非常完美。
Array
(
[0] => Array
(
[0] => {{ type="slider" }}
[1] => slider
)
)
matched: {{ type="slider" }}
My Value : slider
有什么想法吗?
抱歉我的英语不好。
答案 0 :(得分:4)
您需要添加DataTable table = new DataTable("childTable");
DataColumn column;
column = new DataColumn();
column.DataType= System.Type.GetType("System.Int32");
column.ColumnName = "ChildID";
column.AutoIncrement = true;
column.Caption = "ID";
column.ReadOnly = true;
column.Unique = true;
table.Columns.Add(column);
:
?
或preg_match_all('/{{ type=\"(.+?)\" }}/', $html, $matches, PREG_SET_ORDER);
修饰符:
U
答案 1 :(得分:1)
您目前获得的是非常正常的,因为默认情况下您的正则表达式是贪婪的,即/{{ type="(.+)"}} /
查找以{{ type="
开头并以}}
结尾的最长字符串。
这里的另一个答案建议你添加一个“非贪婪”的量词?
并且它会起作用,但它不是最好的解决方案(因为它需要更多来自正则表达式引擎的工作)。
相反,您最好只在正则表达式中用(.+)
替换([^"]+)
。