vote up 0 vote down star

I need to create an dictionary by splitting a string like this:

[SenderName]
Some name
[SenderEmail]
Some email address
[ElementTemplate]
Some text for
an element
[BodyHtml]
This will contain
the html body text 
in
multi
lines
[BodyText]
This will be multiline for text
body

The key could be surrounded by anything if that easier, e.g. [!#key#!] i'm interested in getting everything within [] into the dictionary as keys and whatever between the “keys” as values:

key ::  value
SenderName  ::  Some name
SenderEmail  ::  Some email address
ElementTemplate  ::  Some text for
                     an element

Thanks

flag
4  
Can the values contain '[' and ']'? If so, how are they escaped? – Kent Boogaart Sep 27 at 13:14
There's a space before [ElementTemplate] in your example. Is it a glitch or are whitespaces (maybe be even comments) before the [ allowed? Do section identifiers always occupy a whole line? – VolkerK Sep 27 at 13:19
VolkerK: The space before [ElementTemplate] is my error - sorry. Kent: good point, maybe I don't know. The key could be surrounded by anything if that easier, e.g. [!# key#!] – Henrik Stenbæk Sep 27 at 13:48

3 Answers

vote up 3 vote down check

C# 3.0 version -

public static Dictionary<string, string> SplitToDictionary(string input)
{
    Regex regex = new Regex(@"\[([^\]]+)\]([^\[]+)");

    return regex.Matches(input).Cast<Match>().ToDictionary(x => x.Groups[1].Value, x => x.Groups[2].Value.Trim());
}

Oneliner of previous version -

public static Dictionary<string, string> SplitToDictionary(string input)
{
    return new Regex(@"\[([^\]]+)\]([^\[]+)").Matches(input).Cast<Match>().ToDictionary(x => x.Groups[1].Value, x => x.Groups[2].Value.Trim());
}

Standard C# 2.0 version -

public static Dictionary<string, string> SplitToDictionary(string input)
{
    Regex regex = new Regex(@"\[([^\]]+)\]([^\[]+)");

    Dictionary<string, string> result = new Dictionary<string, string>();
    foreach (Match match in regex.Matches(input))
    {
        result.Add(match.Groups[1].Value, match.Groups[2].Value.Trim());
    }

    return result;
}
link|flag
+1, beat me to it by 30 seconds. – Scott Dorman Sep 27 at 13:47
vote up 0 vote down

You can remove the first '[' and all the "]\n" for ']'

Then split you string using '[' as escape. At this time you will have an array like

key]value 0 - SenderName]Some name 1 - SenderEmail]Some email address 2 - ElementTemplate]Some text for an element

Then it's easy. Iterate through it, splitting using ']' as escape. The first element is the key, the second one will be the value.

link|flag
vote up 0 vote down

Your format looks a lot similar like the Windows INI file format. Google gives me this article when I searched for "C# ini file parser". You could take some ideas from there.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.