4

Is there any opensource library for displaying human readable description for recurring events described by the above standard?

I want to obtain every 5 weeks on Thursday for rule RRULE:FREQ=WEEKLY;INTERVAL=5;BYDAY=TH

Language C# is preferred but not required at all

CrazyMORF
  • 258
  • 1
  • 8
  • this request is similar to : http://stackoverflow.com/questions/21646111/parse-rrule-to-readable-text and has a similar answer: the complexity of rrule makes it a non-trivial problem to solve – Auberon Vacher Feb 26 '14 at 07:02

2 Answers2

4

In JavaScript you might use rrule.js library, It's very useful for generating human readable texts from RRULE string.

You can try it out from this link.

BTW, as far as I know ical4j and google-rfc-2445 didn't have any functionality for generating human readable texts.

frogatto
  • 27,475
  • 10
  • 76
  • 119
0

You could try :

  1. DDay.iCal - .NET 2.0
  2. ical4j - Java
  3. google-rfc-2445 - Java
  4. iCalcreator - PHP
  5. php iCalendar - PHP
  6. libical but it seems broken - C
  7. pyICSParser - disclaimer: I'm the maintainer - python
Auberon Vacher
  • 4,440
  • 1
  • 22
  • 35
  • Thanks for your answer. This is a list of good libraries. Sorry for my english: I definitely need to change my question, because I mean not just parsing but "human readable description of event in input .ics file" – CrazyMORF Feb 25 '14 at 08:38