gpt4 book ai didi

java - 如何删除最后的符号?

转载 作者:行者123 更新时间:2023-11-29 08:34:57 24 4
gpt4 key购买 nike

<分区>

List<String> solList = new ArrayList<String>( );
solList.add( "num1" );
solList.add( "num2" );

StringBuilder result = new StringBuilder();
for ( String a : solList )
{
result.append( a ).append( ", " );
}

String withoutLastComma = result.substring( 0, result.length( ) - ",
".length( ) );
System.err.println( withoutLastComma );

我想删除最后一个逗号,我使用子字符串,我怎样才能使这段代码变得更好?

使用字符串实用程序方法(例如“StringUtil.join”)连接数组或集合对象中的元素。请参阅“StringUtil API 的 StringUtil.join”条目。

例如: StringUtils.join(["e", "f", "g"], "--")//=> "e--f--g

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