c# regex parse file in ical format and populate object with results

前端 未结 5 1958
清酒与你
清酒与你 2021-02-11 00:12

I\'m trying to parse a file that has the following format:

BEGIN:VEVENT
CREATED:20120504T163940Z
DTEND;TZID=America/Chicago:20120504T130000
DTSTAMP:20120504T1640         


        
5条回答
  •  青春惊慌失措
    2021-02-11 00:50

    Spiting into lines and use IndexOf(":") may be enough for simple ICAL files instead of RegEx.

    Check out if there is already existing ICAL parser and related questions ical+C#.

提交回复
热议问题