作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
如何转换 IEnumerable<char>
“非字母”到 string[]
以便我可以将它与 String.Join 一起使用?
string message = "This is a test message.";
var nonLetters = message.Where(x => !Char.IsLetter(x));
Console.WriteLine("There are {0} non-characters in \"{1}\" and they are: {2}",
nonLetters.Count(),
message,
String.Join(", ", nonLetters.ToArray())
);
最佳答案
string[] foo = nonLetters.Select(c => c.ToString()).ToArray();
关于c# - 如何将 IEnumerable<char> 转换为 string[] 以便我可以将它与 String.Join 一起使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1681037/
我是一名优秀的程序员,十分优秀!