括号拼接字符串

Posted zzl0916

tags:

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

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;

以上是关于括号拼接字符串的主要内容,如果未能解决你的问题,请参考以下文章

leetcode22. Generate Parentheses

$符号实现字符串拼接

Java中如何拼接sql或者其他含有变量语句

javascript去除字符串里面的小括号

Python字符串拼接和格式化输出

javascript获取带有中文和括号的字符串