Learn R Programming

dipsaus (version 0.0.3)

parse_svec: Parse Text Into Numeric Vectors

(stable)

Description

Parse Text Into Numeric Vectors

(stable)

Usage

parse_svec(text, sep = ",", connect = "-:|", sort = FALSE,
  unique = TRUE)

Arguments

text

string with chunks, e.g. "1-10, 14, 16-20, 18-30" has 4 chunks

sep

default is ",", character used to separate chunks

connect

characters defining connection links for example "1:10" is the same as "1-10"

sort

sort the result

unique

extract unique elements

Value

a numeric vector. For example, "1-3" returns c(1, 2, 3)

See Also

deparse_svec

Examples

Run this code
# NOT RUN {
parse_svec('1-10, 13:15,14-20')
# }

Run the code above in your browser using DataLab