Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iCalendar RFC 5545 to string

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

like image 459
CrazyMORF Avatar asked Sep 12 '25 16:09

CrazyMORF


1 Answers

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.

like image 118
frogatto Avatar answered Sep 14 '25 15:09

frogatto