如何使用 C/C++ 获取 .ini 文件中的键数
有没有办法从 .ini 文件中获取键的数量?
IE。 [mysection]
server=192.168.1.100
port=1606
blah1=9090
temp1=abcd
等
我想获取密钥的数量(从上面的示例中它应该返回 4)
拜托,任何帮助都会很棒。
Is there any way to get the number of keys from an .ini file?
ie.
[mysection]
server=192.168.1.100
port=1606
blah1=9090
temp1=abcd
etc
I want to get number of key (from the above example it should return 4)
Please, any help will be great.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Kernel32.dll 导出 GetPrivateProfileSection(),它返回一个以 null 分隔的名称/值对列表。你可以数一下有多少对。
Kernel32.dll exports GetPrivateProfileSection() which returns a null-separated list of name/value pairs. You can count the pairs.