我想将char数组的一部分转换为字符串。最好的方法是什么。
我知道我可以为整个数组执行以下操作
char[] chars = {'a', ' ', 's', 't', 'r', 'i', 'n', 'g'};
string s = new string(chars);
但是仅仅是元素2到4呢?
我也知道我可以遍历数组并提取它们,但我想知道是否有更简洁的方法。
答案 0 :(得分:35)
使用带有char数组,索引和长度的String
constructor overload:
String text = new String(chars, 2, 3); // Index 2-4 inclusive
答案 1 :(得分:1)
您可以使用LINQ
char[] chars = { 'a', ' ', 's', 't', 'r', 'i', 'n', 'g' };
string str = new string(chars.Skip(2).Take(2).ToArray());
但偏离课程string overloaded constructor是要走的路