2013-07-09 48 views

回答

0

你應該能夠用正則表達式來做到這一點像

(.*)\.html$ 

(美元匹配輸入字符串的結尾)。這將採用雙元「逃離」被視爲螞蟻財產擴張的一部分,單獨的美元符號對應

<propertyregex property="some.property" input="abc.bcd.html.efg.Hello.html" 
    regex="(.*)\.html$$" select="\1" /> 

- 見"$$ Expansion" on this page

相關問題