C#-字符串数组常用处理

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApp2
{
    class Program
    {
        static void Main(string[] args)
        {
            string[] strs = { "   1,   ", "   2,   ", "   3,   " };
            strs = strs.Select(m => m.Trim(new char[] { ',' , ' '})).ToArray();            
            string res = string.Join("", strs);
        }
    }
}
 

你可能感兴趣的:(C#)