Skip to contents

Converts non-local characters to ASCII

Usage

convert.toASCII(comment)

Arguments

comment

A string of words forming a sentence or phrase.

Value

string of cleaned characters forming words

Details

Convert latin1 encoded characters to ASCII

Examples

comment <- "All day I see class mates and send e-mails.   I miss East Lansing."

convert.toASCII(comment=comment)
#> [1] "All day I see class mates and send e-mails.   I miss East Lansing."