正则表达式求助

hellsam · · 1834 次点击
.默认不匹配换行的,你试试这个? ``` var lstr = ` dsfdsf <!--template type="button" rows="7" name="news" fields="id,name" query="type={$bin_tp}" sort="id desc"--> <dd><a target="_blank" href="news?id={$bin_news}&id={$bin_value}" title="{$bin_title_value}">{$bin_title_value2} </a></dd> <!--/template--> dfdsfd <!--template type="var" name="config_v" format='${0}="{1}";' convert="decode"--><!--/template--> ` b2 := regexp.MustCompile("<!--template.+?-->[\\s\\S]*?<!--/template-->") arrs := b2.FindAllString(lstr, -1) fmt.Println("长:",len(arrs)) ```
#1
更多评论
我解决了 谢谢
#2