corpus (version 0.10.1)

text_sub: Text Subsequences

Description

Extract token subsequences from a set of texts.

Usage

text_sub(x, start = 1L, end = -1L, filter = NULL, ...)

Arguments

x

text vector or corpus object.

start

integer vector giving the starting positions of the subsequences, or a two-column integer matrix giving the starting and ending positions.

end

integer vector giving the ending positions of the subsequences; ignored if start is a two-column matrix.

filter

if non-NULL, a text filter to to use instead of the default text filter for x.

additional properties to set on the text filter.

Value

A text vector with the same length and names as x, with the desired subsequences.

Details

text_sub extracts token subsequences from a set of texts. The start and end arguments specifying the positions of the subsequences within the parent texts, as an inclusive range. Negative indices are interpreted as counting from the end of the text, with -1L referring to the last element.

See Also

text_tokens, text_ntoken.

Examples

Run this code
# NOT RUN {
x <- as_corpus_text(c("A man, a plan.", "A \"canal\"?", "Panama!"),
                    drop_punct = TRUE)

# entire text
text_sub(x, 1, -1)

# first three elements
text_sub(x, 1, 3)

# last two elements
text_sub(x, -2, -1)
# }

Run the code above in your browser using DataLab