关于c#:计算字符串中的选项卡数


Count the number of tabs in a string

本问题已经有最佳答案,请猛点这里访问。

Possible Duplicate:
How would you count occurences of a string within a string (C#)?

我正在逐行读取一个文件,需要计算每个字符串包含的制表符数量。如何从字符串中获取选项卡的计数,即 。

谢谢你的帮助


1
2
3
uint howManyTabs(string s) {
    return (uint)s.Count(ch => ch == '\t');
}