You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

basename.xml 977 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?xml version="1.0"?>
  2. <project name="xxx-test" basedir="." default="test1">
  3. <target name="test1">
  4. <basename/>
  5. </target>
  6. <target name="test2">
  7. <basename property="propname"/>
  8. </target>
  9. <target name="test3">
  10. <basename file="filename"/>
  11. </target>
  12. <target name="test4">
  13. <basename property="file.w.suf" file="${user.dir}/foo.txt"/>
  14. </target>
  15. <target name="test5">
  16. <basename property="file.wo.suf" file="foo.txt" suffix="txt"/>
  17. </target>
  18. <target name="testMultipleDots">
  19. <basename property="file.wo.suf" file="foo.bar.txt" suffix="txt"/>
  20. </target>
  21. <target name="testNoDots">
  22. <basename property="file.wo.suf" file="foo.bartxt" suffix="txt"/>
  23. </target>
  24. <target name="testValueEqualsSuffixWithDot">
  25. <basename property="file.wo.suf" file=".txt" suffix=".txt"/>
  26. </target>
  27. <target name="testValueEqualsSuffixWithoutDot">
  28. <basename property="file.wo.suf" file=".txt" suffix="txt"/>
  29. </target>
  30. </project>