Learn R Programming

coalitions (version 0.6.12)

get_superior: Extract superior coalitions from coalition string or vector

Description

Extract superior coalitions from coalition string or vector

Usage

get_superior(string, pattern = "_", collapse = "_")

Arguments

string

Input vector. Either a character vector, or something coercible to one.

pattern

Pattern to look for.

The default interpretation is a regular expression, as described in stringi::stringi-search-regex. Control options with regex().

Match a fixed string (i.e. by comparing only bytes), using fixed(). This is fast, but approximate. Generally, for matching human text, you'll want coll() which respects character matching rules for the specified locale.

Match character, word, line and sentence boundaries with boundary(). An empty pattern, "", is equivalent to boundary("character").

collapse

string that will be used to concatenate multiple elements obtained by splitting string to one string.

See Also

stringr str_split