<cfoutput>
<cfsavecontent variable="s">
This is some text. It is true that <a href="http://www.cnn.com">Harry Potter</a> is a good
</cfsavecontent>
<cfset matches = reMatch("<[aA].*?>",s) />
#matches#
</cfoutput>
我只需要获得&#34; http://www.cnn.com&#34;怎么做
答案 0 :(得分:1)
@Bhargavi:你的正则表达没问题。
请改为#matches[1]#
。
<cfdump var="#matches#">
将显示可以相应操作结果的值数组。