在Ant中,如何測試某個屬性是否以給定值結束?在Ant中,如何測試某個屬性是否以給定值結束?
例如
<property name="destdir"
value="D:\FeiLong Soft\Essential\Development\repository\org\springframework\spring-beans" />
我怎樣才能測試是否${destdir}
與"spring-beans"
結束?
補充:
在我的螞蟻的contrib-1.0b3.jar,不 '的endsWith' 任務~~
這適用於測試一個路徑的最後一個組件是否等於「spring-beans」。它不能用來測試一個屬性是否嚴格以該子串結尾。 –