可移动类型:使用正则表达式替换更改URL

时间:2010-08-25 04:22:46

标签: regex types movable

在我的<mt:EntryBody>文字中,我想要更改指点地址的网址很少。

http://www.myblog.com/blog/content/fruit/apple.html

http://www.myblog.com/blog/apple/

在这种情况下,单词“fruit”和“apple”将是变量。我想使用regex_replace修饰符来更改EntryBody中的每个网址。

我怎么写这个?

1 个答案:

答案 0 :(得分:1)

试试这个?

<mt:EntryBody regex_replace="/content\/\w*\/([^\.]*)\.html/","$1/">

$ 1将从“()”

中匹配的内容中获取信息