All Projects → ropensci → unrtf

ropensci / unrtf

Licence: other
Wrapper for 'unrtf' utility to extract text from RTF documents

Programming Languages

c
50402 projects - #5 most used programming language
r
7636 projects

Projects that are alternatives of or similar to unrtf

antiword
R wrapper for antiword utility
Stars: ✭ 47 (+235.71%)
Mutual labels:  r-package, extract-text
arcdiagram
R package arcdiagram
Stars: ✭ 75 (+435.71%)
Mutual labels:  r-package
nlrx
nlrx NetLogo R
Stars: ✭ 66 (+371.43%)
Mutual labels:  r-package
metadat
Meta-analytic datasets for R
Stars: ✭ 21 (+50%)
Mutual labels:  r-package
ffscrapr
R API Client for Fantasy Football League Platforms
Stars: ✭ 55 (+292.86%)
Mutual labels:  r-package
metafor
A meta-analysis package for R
Stars: ✭ 174 (+1142.86%)
Mutual labels:  r-package
rAltmetric
Query and visualize metrics from altmetric.com
Stars: ✭ 46 (+228.57%)
Mutual labels:  r-package
xaringanBuilder
An R package for building xaringan slides into multiple outputs, including html, pdf, png, gif, pptx, and mp4.
Stars: ✭ 157 (+1021.43%)
Mutual labels:  r-package
sparklygraphs
Old repo for R interface for GraphFrames
Stars: ✭ 13 (-7.14%)
Mutual labels:  r-package
scMCA
Mouse cell atlas
Stars: ✭ 45 (+221.43%)
Mutual labels:  r-package
mlr3tuning
Hyperparameter optimization package of the mlr3 ecosystem
Stars: ✭ 44 (+214.29%)
Mutual labels:  r-package
packagefinder
Comfortable search for R packages on CRAN, either directly from the R console or with an R Studio add-in
Stars: ✭ 43 (+207.14%)
Mutual labels:  r-package
RcppEigen
Rcpp integration for the Eigen templated linear algebra library
Stars: ✭ 89 (+535.71%)
Mutual labels:  r-package
tidyhydat
An R package to import Water Survey of Canada hydrometric data and make it tidy
Stars: ✭ 67 (+378.57%)
Mutual labels:  r-package
healthyR
Hospital Data Analysis Workflow Tools
Stars: ✭ 21 (+50%)
Mutual labels:  r-package
syn
syn - the thesaurus
Stars: ✭ 45 (+221.43%)
Mutual labels:  r-package
rdflib
📦 High level wrapper around the redland package for common rdf applications
Stars: ✭ 47 (+235.71%)
Mutual labels:  r-package
oem
Penalized least squares estimation using the Orthogonalizing EM (OEM) algorithm
Stars: ✭ 22 (+57.14%)
Mutual labels:  r-package
rcppcnpy
Rcpp bindings for NumPy files
Stars: ✭ 24 (+71.43%)
Mutual labels:  r-package
tsgam
Functions for using GAMs to model time series
Stars: ✭ 30 (+114.29%)
Mutual labels:  r-package

unrtf

Project Status: Active – The project has reached a stable, usable state and is being actively developed. CRAN_Status_Badge CRAN RStudio mirror downloads

Extract Text from Rich Text Format (rtf) Documents

Wraps the unrtf utility to extract text from rtf files.

Installation

install.packages("unrtf")

Hello World

The function has only a single function unrtf(). It takes either a local file path or a URL to a word document:

library(unrtf)
text <- unrtf("https://jeroen.github.io/files/sample.rtf", format = "text")
html <- unrtf("https://jeroen.github.io/files/sample.rtf", format = "html")
cat(text)
###  Translation from RTF performed by UnRTF, version 0.21.9 
### font table contains 11 fonts total

TITLE: It is an example test rtf-file to RTF2XML bean for testing

AUTHOR: kissj
### creation date: 17 April 2000 15:34 
### revision date: 19 April 2000 09:34 
### total pages: 2
### total words: 217
### total chars: 1240

-----------------
It is an example test rtf-file to RTF2XML bean for testing

Font size 10, plain text;
Font size 12, bold text. Underline,bold text.
 Underline,italic,bold text. 
Font size 22, plain text.
 Bold text.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].