-
Notifications
You must be signed in to change notification settings - Fork 2
/
DESCRIPTION
42 lines (41 loc) · 1.18 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
Package: nc
Authors@R: c(
person("Toby", "Hocking",
email="[email protected]",
role=c("aut", "cre")))
Version: 2024.9.20
License: GPL-3
Title: Named Capture to Data Tables
Description: User-friendly functions for extracting a data
table (row for each match, column for each group)
from non-tabular text data using regular expressions,
and for melting columns that match a regular expression.
Patterns are defined using a readable syntax
that makes it easy to build complex patterns
in terms of simpler, re-usable sub-patterns.
Named R arguments are translated to column names
in the output; capture groups without names are used
internally in order to provide a standard interface
to three regular expression 'C' libraries
('PCRE', 'RE2', 'ICU').
Output can also include numeric columns via
user-specified type conversion functions.
Depends: R (>= 2.14)
Imports: data.table (>= 1.15.0)
Suggests:
testthat,
re2,
stringi,
ggplot2,
tidyr (>= 1.0.0),
cdata,
reshape2,
knitr,
markdown,
rmarkdown,
R.utils,
covr,
arrow
VignetteBuilder: knitr
URL: https://github.com/tdhock/nc
BugReports: https://github.com/tdhock/nc/issues