ical_parse: ical_parse

Description Usage Arguments Examples

Description

Parses iCalendar format from character vector or file and returns it as a list of columns.

Parses iCalendar format from character vector or file and returns it as data.frame.

Parses iCalendar format from character vector or file and returns it as a list of entries.

Usage

1
2
3
4
5

Arguments

file

path to file to be read in and parsed

text

text of ical file

Examples

1
2
3
4
5
6
# parse from character vector
char_vec <- readLines(system.file("birthdays.ics", package = "ical"))
ical_parse(text = char_vec)

# parse from file
ical_parse(file = system.file("birthdays.ics", package = "ical"))

ical documentation built on May 1, 2019, 6:33 p.m.