{bracer}
provides support for performing brace
expansions on strings in R.
## [1] "FooA" "FooB" "FooC" "FooD" "FooE" "FooF"
## [1] "Foo01" "Foo02" "Foo03" "Foo04" "Foo05" "Foo06" "Foo07" "Foo08" "Foo09"
## [10] "Foo10"
## [1] "FooA1" "FooA3" "FooA5" "FooC1" "FooC3" "FooC5" "FooE1" "FooE3" "FooE5"
## [1] "Foo-01" "Foo000" "Foo001"
## [1] "Food.py" "Food.bash" "Foobar.py" "Foobar.bash" "Foobiz.py"
## [6] "Foobiz.bash"
expand_braces()
is vectorized and returns one big
character vector of all the brace expansions.
str_expand_braces()
is an alternative that returns a list
of character vectors.
## [1] "FooA" "FooB" "FooC" "FooD" "FooE" "FooF" "Bar.py"
## [8] "Bar.bash" "{{Biz}}"
## [[1]]
## [1] "FooA" "FooB" "FooC" "FooD" "FooE" "FooF"
##
## [[2]]
## [1] "Bar.py" "Bar.bash"
##
## [[3]]
## [1] "{{Biz}}"
glob()
is a wrapper around Sys.glob()
that
uses expand_braces()
to support both brace and wildcard
expansion on file paths.
## [1] "R/engine-r.R" "R/engine-v8.R" "R/expand_braces.R"
## [4] "R/glob.R"
To install the release version on CRAN use the following command in R:
To install the developmental version use the following command in R:
Installing the suggested {V8}
package will enable use of
the javascript alternative parser:
The {bracer}
pure R parser currently does not properly
support the “correct” (Bash-style) brace expansion under several edge
conditions such as:
{{a,d}
(but you could use an
escaped brace instead \\{{a,d}
){'a,b','c'}
(but you could use an escaped comma
instead {a\\,b,c}
){a,b\\}c,d}
{a,\\\\{a,b}c}
X{a..#}X
## [1] "{{a,d}"
## [1] "'a" "b'" "'c'"
## [1] "a,b}c" "d"
## [1] "ac}" "{ac}" "bc}"
## [1] "X{a..#}X"
However if the {V8}
suggested R package is installed we
can instead use an embedded version of the braces Javascript
library which can correctly handle these edge cases. To do so we need to
set the bracer “engine” to “v8”.
## [1] "{a" "{d"
## [1] "a,b" "c"
## [1] "a" "b}c" "d"
## [1] "a" "\\ac" "\\bc"
## [1] "XaX" "X`X" "X_X" "X^X" "X]X" "X\\X" "X[X" "XZX" "XYX" "XXX"
## [11] "XWX" "XVX" "XUX" "XTX" "XSX" "XRX" "XQX" "XPX" "XOX" "XNX"
## [21] "XMX" "XLX" "XKX" "XJX" "XIX" "XHX" "XGX" "XFX" "XEX" "XDX"
## [31] "XCX" "XBX" "XAX" "X@X" "X?X" "X>X" "X=X" "X<X" "X;X" "X:X"
## [41] "X9X" "X8X" "X7X" "X6X" "X5X" "X4X" "X3X" "X2X" "X1X" "X0X"
## [51] "X/X" "X.X" "X-X" "X,X" "X+X" "X*X" "X)X" "X(X" "X'X" "X&X"
## [61] "X%X" "X$X" "X#X"