What is the easiest way to parse an INI File in C++? - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T15:43:00Zhttp://stackoverflow.com/feeds/question/12633http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/12633/what-is-the-easiest-way-to-parse-an-ini-file-in-c18What is the easiest way to parse an INI File in C++?conmulligan2008-08-15T19:31:01Z2009-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#126366Answer by Lars Mæhlum for What is the easiest way to parse an INI File in C++?Lars Mæhlum2008-08-15T19:33:31Z2008-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#126702Answer by Stu for What is the easiest way to parse an INI File in C++?Stu2008-08-15T20:01:00Z2008-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#1267745Answer by Joel Spolsky for What is the easiest way to parse an INI File in C++?Joel Spolsky2008-08-15T20:06:53Z2008-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#126842Answer by crashmstr for What is the easiest way to parse an INI File in C++?crashmstr2008-08-15T20:10:46Z2008-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#2382015Answer by Adam Mitz for What is the easiest way to parse an INI File in C++?Adam Mitz2008-08-23T01:21:09Z2008-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#1164132Answer by Harold Ekstrom for What is the easiest way to parse an INI File in C++?Harold Ekstrom2008-09-22T17:58:15Z2008-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#3719770Answer by widgisoft for What is the easiest way to parse an INI File in C++?widgisoft2008-12-16T17:13:30Z2008-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#13447640Answer by joe for What is the easiest way to parse an INI File in C++?joe2009-08-28T02:38:55Z2009-08-28T02:38:55Z<p>google sscanf or fscanf</p>