具有重复键的INI文件

时间:2010-11-18 12:24:14

标签: windows visual-studio winapi vb6

说我有一个像这样的INI文件:

[123]
name=Ryan
name=Joe

如何使用GetPrivateProfileSectionGetPrivateProfileString等API调用检索“name = Ryan \ nname = Joe”?

1 个答案:

答案 0 :(得分:5)

是的,GetPrivateProfileSection将返回它。 GetPrivateProfileString()显然只能检索“Ryan”。你不会得到你想要的字符串,名称/值对用零分隔。列表的末尾用两个零表示。解析它时,您需要考虑到这一点。