拼接字符串时去掉最后一个多余逗号

Posted panchanggui

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了拼接字符串时去掉最后一个多余逗号相关的知识,希望对你有一定的参考价值。

当我们遍历拼接字符串的时候,最后会多出一个我们添加的字符(比如逗号)。

方式一:

String str[] = { "hello", "beijing", "world", "shenzhen" };
StringBuffer buf = new StringBuffer();

for (int i = 0; i < str.length; i++) {
    buf.append(str[i]).append(",");
}

if (buf.length() > 0) {
    //方法一  : substring
    System.out.println(buf.substring(0, buf.length()-1));
    //方法二 :replace
    System.out.println(buf.replace(buf.length() - 1, buf.length(), ""));
    //方法三: deleteCharAt
    System.out.println(buf.deleteCharAt(buf.length()-1));
}

  

方式二:

StringBuilder sdb = new StringBuilder();
for ( int t = 0; t < memberLen; t++ )
{
    memTemp = stafferMap.get( strMember[t] );
    if ( memTemp != null )
    {
        if ( sbd.length > 0 )
        {
            sbd.append( "," ).append( memTemp );
        }else{
            sbd.append( memTemp );
        }
    }
}

  

 

以上是关于拼接字符串时去掉最后一个多余逗号的主要内容,如果未能解决你的问题,请参考以下文章

拼接字符串时去掉最后一个多余逗号

Java如何将拼接字符串中的最后一个逗号去掉

string拼接时去掉最后一个逗号

google ---gson字符串数组用GSON解析然后用逗号隔开拼接,去掉最后一个逗号

kettle之行转列,删除多余连接符

Matlab 读取dat文件(包含几行多余文本,数据带有数字和字符串,且以逗号分隔)