gpt4 book ai didi

java - 删除 : in 12:45 (java)

转载 作者:行者123 更新时间:2023-11-29 09:38:34 25 4
gpt4 key购买 nike

时间 12:45我想删除 : 在 Java 中 ..我只需要 1245 ..我该怎么做?

最佳答案

String time = "12:45".replace( ":", "" ); // "1245"

如果你有Apache Coomons Lang在你的类路径中,并且你不确定时间不为空,你可以使用 StringUtils :

time = StringUtils.remove( time, ":" );

这种方式比写的更紧凑

if ( time != null ) {
time = time.replace( ":", "" );
}

关于java - 删除 : in 12:45 (java),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5223642/

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