将字符串数组合并为逗号分隔的字符串(foreach)

Posted

tags:

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

This can be useful for string preparations.
  1. string str = "";
  2.  
  3. // loop though an array and create a string
  4. // delimited with commas
  5. foreach (string s in fieldNames)
  6. {
  7. str += s;
  8.  
  9. // if this not the last item in the array
  10. // append a comma to end of the string.
  11. if (s != fieldNames[fieldNames.Length - 1])
  12. {
  13. str += ", ";
  14. }
  15. }

以上是关于将字符串数组合并为逗号分隔的字符串(foreach)的主要内容,如果未能解决你的问题,请参考以下文章

将多行中的文本合并为一行(作为逗号分隔的字符串)

将逗号分隔的字符串拆分为数组?

无法将逗号分隔的字符串转换为数组

如何将逗号分隔的字符串转换为数组?

js 将数组转换为逗号分隔的字符串

如何将逗号分隔的字符串转换为数组? [复制]