Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Now i want use C# to parse vcard. i'm using this demo : http://www.codeproject.com/Articles/17393/vCard-Reader-with-Lightweight-Approach it load many phone number but it only load 1 name in vcard . this is image: enter image description here

i found code parse name here (do not have loop ):

 RegexOptions options = RegexOptions.IgnoreCase | 
            RegexOptions.Multiline | RegexOptions.IgnorePatternWhitespace;

        Regex regex;
        Match m;
        MatchCollection mc;

        regex = new Regex(@"(?<strElement>(FN))   (:(?<strFN>[^\n\r]*))", options);
        m = regex.Match(s);
        if (m.Success)
            FormattedName = m.Groups["strFN"].Value;

        regex = new Regex(@"(\n(?<strElement>(N)))   
                (:(?<strSurname>([^;]*))) (;(?<strGivenName>([^;]*)))  
                (;(?<strMidName>([^;]*))) (;(?<strPrefix>([^;]*))) 
                (;(?<strSuffix>[^\n\r]*))", options);
        m = regex.Match(s);
        if (m.Success)
        {
            Surname = m.Groups["strSurname"].Value;
            GivenName = m.Groups["strGivenName"].Value;
            MiddleName = m.Groups["strMidName"].Value;
            Prefix = m.Groups["strPrefix"].Value;
            Suffix = m.Groups["strSuffix"].Value;
        }

and code parse phone:

///Phones
        regex = new Regex(@"(\n(?<strElement>(TEL)) 
                (;*(?<strAttr>(HOME|WORK)))* 
                (;(?<strType>(VOICE|CELL|PAGER|MSG|FAX)))*  
                (;(?<strPref>(PREF)))* (;[^:]*)*  
                (:(?<strValue>[^\n\r]*)))", options);
        mc = regex.Matches(s);
        if (mc.Count > 0)
        {
            Phones = new Phone[mc.Count];
            for (int i = 0; i < mc.Count; i++)
            {
                m = mc[i];
                Phones[i].number = m.Groups["strValue"].Value;
                ss = m.Groups["strAttr"].Value;
                if (ss == "HOME")
                    Phones[i].homeWorkType = HomeWorkType.home;
                else if (ss == "WORK")
                    Phones[i].homeWorkType = HomeWorkType.work;

                if (m.Groups["strPref"].Value == "PREF")
                    Phones[i].pref = true;

                ss = m.Groups["strType"].Value;
                if (ss == "VOICE")
                    Phones[i].phoneType = PhoneType.VOICE;
                else if (ss == "CELL")
                    Phones[i].phoneType = PhoneType.CELL;
                else if (ss == "PAGER")
                    Phones[i].phoneType = PhoneType.PAGER;
                else if (ss == "MSG")
                    Phones[i].phoneType = PhoneType.MSG;
                else if (ss == "FAX")
                    Phones[i].phoneType = PhoneType.FAX;
            }
        }

i want parse all name and phonenumber, help me!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.