码迷,mamicode.com
首页 > 其他好文 > 详细

括号拼接字符串

时间:2019-07-28 09:43:59      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:null   字符串   lse   size   static   strong   The   font   stat   

public static String parenthesesSpeelStr(List<String> list) {
String str = "( ";
String quotes="\"";
if (list != null && list.size() > 0) {
for (int i = 0; i < list.size(); i++) {
if (i != list.size() - 1) {
str += quotes+ list.get(i)+quotes + ",";
} else {
str += quotes+ list.get(i)+quotes;
}


}
}
str += " )";
return str;

}

括号拼接字符串

标签:null   字符串   lse   size   static   strong   The   font   stat   

原文地址:https://www.cnblogs.com/zzl0916/p/11257638.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!