Add `parseIniMergedAA` example

This commit is contained in:
Elias Batek 2025-02-16 21:35:39 +01:00
parent e29d8fcd22
commit 5d31192edb
1 changed files with 20 additions and 0 deletions

20
ini.d
View File

@ -106,6 +106,26 @@ module arsd.ini;
assert(icon == "setup.exe,0"); assert(icon == "setup.exe,0");
} }
///
@safe unittest {
// INI example data (e.g. from an `autorun.inf` file)
static immutable string rawIniData =
"[autorun]\n"
~ "open=setup.exe\n"
~ "icon=setup.exe,0\n";
// Parse the document into a flat associative array.
// (Sections would get merged, but there is only one section in the
// example anyway.)
string[string] data = parseIniMergedAA(rawIniData);
string open = data["open"];
string icon = data["icon"];
assert(open == "setup.exe");
assert(icon == "setup.exe,0");
}
/// ///
@safe unittest { @safe unittest {
// INI example data (e.g. from an `autorun.inf` file): // INI example data (e.g. from an `autorun.inf` file):