Learn R Programming

qdap (version 2.4.6)

incomplete_replace: Denote Incomplete End Marks With "|"

Description

Replaces incomplete sentence end marks (.., ..., .?, ..?, en & em dash etc.) with "|".

Usage

incomplete_replace(text.var, scan.mode = FALSE)

incomp(text.var, scan.mode = FALSE)

Value

Returns a text variable (character sting) with incomplete sentence marks (.., ..., .?, ..?, en & em dash etc.) replaced with "|". If scan mode is TRUE returns a data frame with incomplete sentence location.

Arguments

text.var

The text variable.

scan.mode

logical. If TRUE only scans and reports incomplete sentences.

Examples

Run this code
if (FALSE) {
x <- c("the...",  "I.?", "you.", "threw..", "we?")
incomplete_replace(x)
incomp(x)
incomp(x, scan.mode = TRUE)
}

Run the code above in your browser using DataLab