在我的<mt:EntryBody>
文字中,我想要更改指点地址的网址很少。
http://www.myblog.com/blog/content/fruit/apple.html
到
http://www.myblog.com/blog/apple/
在这种情况下,单词“fruit”和“apple”将是变量。我想使用regex_replace
修饰符来更改EntryBody中的每个网址。
我怎么写这个?
答案 0 :(得分:1)
试试这个?
<mt:EntryBody regex_replace="/content\/\w*\/([^\.]*)\.html/","$1/">
$ 1将从“()”
中匹配的内容中获取信息