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');
} |
- 型为什么要使用uint?
- 型因为它必须是非负整数?
- 型因为函数返回uint…
- 型为什么函数返回uint而不是int?
- 型@DTB,明确返回值不小于零。这就是无符号int的含义。据我所知,像count返回int这样的东西为了符合cls,这在这里可能不是问题。