What is the easiest way to parse an INI File in C++? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T15:43:00Z http://stackoverflow.com/feeds/question/12633 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/12633/what-is-the-easiest-way-to-parse-an-ini-file-in-c 18 What is the easiest way to parse an INI File in C++? conmulligan 2008-08-15T19:31:01Z 2009-08-28T02:38:55Z <p>I'm trying to parse an INI file using C++. Any tips on what is the best way to achieve this? Should I use the Windows API tools for INI file processing (with which I am totally unfamiliar), an open-source solution or attempt to parse it manually?</p> http://stackoverflow.com/questions/12633/what-is-the-easiest-way-to-parse-an-ini-file-in-c/12636#12636 6 Answer by Lars Mæhlum for What is the easiest way to parse an INI File in C++? Lars Mæhlum 2008-08-15T19:33:31Z 2008-08-15T19:40:48Z <p>I have never parsed ini files, so I can't be too specific on this issue.<br /> But i have one advice:<br /> <strong>Don't reinvent the wheel as long as an existing one meets your requirements</strong></p> <p><a href="http://en.wikipedia.org/wiki/INI_file#Accessing_INI_files" rel="nofollow">http://en.wikipedia.org/wiki/INI_file#Accessing_INI_files</a><br /> <a href="http://sdl-cfg.sourceforge.net/" rel="nofollow">http://sdl-cfg.sourceforge.net/</a><br /> <a href="http://sourceforge.net/projects/libini/" rel="nofollow">http://sourceforge.net/projects/libini/</a><br /> <a href="http://www.codeproject.com/KB/files/config-file-parser.aspx" rel="nofollow">http://www.codeproject.com/KB/files/config-file-parser.aspx</a></p> <p>Good luck :)</p> http://stackoverflow.com/questions/12633/what-is-the-easiest-way-to-parse-an-ini-file-in-c/12670#12670 2 Answer by Stu for What is the easiest way to parse an INI File in C++? Stu 2008-08-15T20:01:00Z 2008-08-15T20:01:00Z <p>Just use the Win32 APIs. Don't worry, they're easy as pie.</p> http://stackoverflow.com/questions/12633/what-is-the-easiest-way-to-parse-an-ini-file-in-c/12677#12677 45 Answer by Joel Spolsky for What is the easiest way to parse an INI File in C++? Joel Spolsky 2008-08-15T20:06:53Z 2008-08-15T20:06:53Z <p>You can use the Windows API functions, such as <a href="http://msdn.microsoft.com/en-us/library/ms724353.aspx" rel="nofollow">GetPrivateProfileString()</a> and <a href="http://msdn.microsoft.com/en-us/library/ms724345.aspx" rel="nofollow">GetPrivateProfileInt()</a>.</p> http://stackoverflow.com/questions/12633/what-is-the-easiest-way-to-parse-an-ini-file-in-c/12684#12684 2 Answer by crashmstr for What is the easiest way to parse an INI File in C++? crashmstr 2008-08-15T20:10:46Z 2008-08-15T20:10:46Z <p>Unless you plan on making the app cross-platform, using the Windows API calls would be the best way to go. Just ignore the note in the API documentation about being provided only for 16-bit app compatibility.</p> http://stackoverflow.com/questions/12633/what-is-the-easiest-way-to-parse-an-ini-file-in-c/23820#23820 15 Answer by Adam Mitz for What is the easiest way to parse an INI File in C++? Adam Mitz 2008-08-23T01:21:09Z 2008-09-10T06:37:08Z <p>If you need a cross-platform solution, try Boost's <a href="http://www.boost.org/doc/libs/1_36_0/doc/html/program_options.html" rel="nofollow">Program Options</a> library.</p> http://stackoverflow.com/questions/12633/what-is-the-easiest-way-to-parse-an-ini-file-in-c/116413#116413 2 Answer by Harold Ekstrom for What is the easiest way to parse an INI File in C++? Harold Ekstrom 2008-09-22T17:58:15Z 2008-09-22T17:58:15Z <p>I use <a href="http://code.jellycan.com/simpleini/" rel="nofollow">SimpleIni</a>. It's cross-platform.</p> http://stackoverflow.com/questions/12633/what-is-the-easiest-way-to-parse-an-ini-file-in-c/371977#371977 0 Answer by widgisoft for What is the easiest way to parse an INI File in C++? widgisoft 2008-12-16T17:13:30Z 2008-12-16T17:13:30Z <p>Have you tried <a href="http://www.hyperrealm.com/libconfig/" rel="nofollow">libconfig</a>; very JSON-like syntax. I prefer it over XML configuration files.</p> http://stackoverflow.com/questions/12633/what-is-the-easiest-way-to-parse-an-ini-file-in-c/1344764#1344764 0 Answer by joe for What is the easiest way to parse an INI File in C++? joe 2009-08-28T02:38:55Z 2009-08-28T02:38:55Z <p>google sscanf or fscanf</p>