listify {rprime} | R Documentation |
Convert a vector of colon-separated text lines into a list of named elements
Description
Convert a vector of colon-separated text lines into a list of named elements
Usage
listify(colon_sep_xs)
Arguments
colon_sep_xs |
a character vector with lines of the form
|
Details
Some minor cleaning of the input is performed:
Lines without a colon-space separator
": "
are filtered out.Once the strings are split at the separator, white-space on the left and right sides of each half-string is omitted.
Value
a named list of the values in the colon-separated lines.
"key: value"
yields list(key = "value")
[Package rprime version 0.1.2 Index]