批处理脚本 - 计算文件中字符的实例数
在 Windows XP 中使用批处理脚本(.bat 文件),我将如何读取文本文件并查找存在多少个字符实例?
例如,我有一个包含以下内容的字符串:
""OIJEFJ"JOIEJKAJF"""LKAJFKLJEIJ""JKLFJALKJF"LKJLKFA""""LKJKLFJLKADJF
我希望它计算文件中有多少个 "
并返回计数。
Using a batch script (.bat file) in windows xp, how would I go about reading a text file and finding how many instances of a character exists?
For example, I have a string with the following:
""OIJEFJ"JOIEJKAJF"""LKAJFKLJEIJ""JKLFJALKJF"LKJLKFA""""LKJKLFJLKADJF
I want it to count how many "
there are in the file and return the count.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
让我们开始计算一行中的字符。首先是缓慢而清晰的方法:
现在是快速而神秘的方法:
最后是计算文件中字符的方法:
Let's start counting the characters in a line. First the slow and clear method:
Now the fast and cryptic method:
Finally the method to count the characters in a file: