gpt4 book ai didi

Ant字符串比较

转载 作者:行者123 更新时间:2023-12-01 12:59:30 25 4
gpt4 key购买 nike

我有一个 ant 脚本,我需要按字典顺序比较 2 个字符串。像这样的东西:

 "1.2.3".compareTo("1.2.4")

我找不到这样做的方法...有什么想法吗?我正在使用 ant 1.8 和 ant-contrib。

谢谢

最佳答案

要使此解决方案起作用,您需要将 JAVA_HOME 指向 JRE 1.6 或更高版本。

<project name="test" default="test">
<scriptdef name="compare" language="javascript">
<attribute name="lhs" />
<attribute name="rhs" />
<attribute name="property" />
<![CDATA[
var lhs = attributes.get("lhs");
var rhs = attributes.get("rhs");
project.setProperty(attributes.get("property"), lhs > rhs);
]]>
</scriptdef>

<target name="test">
<compare lhs="1.2.3" rhs="1.2.4" property="result"/>
<echo message="Result is : ${result}"/>
</target>
</project>

输出:

test:
[echo] Result is : false

关于Ant字符串比较,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7412894/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com