将字符串数组合并为逗号分隔的字符串(foreach)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将字符串数组合并为逗号分隔的字符串(foreach)相关的知识,希望对你有一定的参考价值。
This can be useful for string preparations.
string str = ""; // loop though an array and create a string // delimited with commas foreach (string s in fieldNames) { str += s; // if this not the last item in the array // append a comma to end of the string. if (s != fieldNames[fieldNames.Length - 1]) { str += ", "; } }
以上是关于将字符串数组合并为逗号分隔的字符串(foreach)的主要内容,如果未能解决你的问题,请参考以下文章