Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的<mt:EntryBody>文本中,我想更改指向地址的网址很少。
<mt:EntryBody>
http://www.myblog.com/blog/content/fruit/apple.html
到
http://www.myblog.com/blog/apple/
在这种情况下,单词“fruit”和“apple”将是变量。我想使用regex_replace修饰符来更改 EntryBody 中的每个 URL。
regex_replace
我怎么写这个?
试试这个 ?
<mt:EntryBody regex_replace="/content\/\w*\/([^\.]*)\.html/","$1/">
$1 将从 "( )" 中匹配的内容中获取信息