Home
last modified time | relevance | path

Searched refs:tokens_only (Results 1 – 11 of 11) sorted by relevance

/dports/textproc/R-cran-stringi/stringi/R/
H A Dsearch_split_4.R155 omit_empty = FALSE, tokens_only = FALSE, argument
162 .Call(C_stri_split_fixed, str, pattern, n, omit_empty, tokens_only, simplify,
170 omit_empty = FALSE, tokens_only = FALSE, argument
177 .Call(C_stri_split_regex, str, pattern, n, omit_empty, tokens_only, simplify,
185 omit_empty = FALSE, tokens_only = FALSE, argument
192 .Call(C_stri_split_coll, str, pattern, n, omit_empty, tokens_only, simplify,
200 omit_empty = FALSE, tokens_only = FALSE, argument
205 .Call(C_stri_split_charclass, str, pattern, n, omit_empty, tokens_only, simplify)
H A Dsearch_split_bound.R169 tokens_only = FALSE, simplify = FALSE, argument
174 .Call(C_stri_split_boundaries, str, n, tokens_only, simplify, opts_brkiter)
/dports/textproc/R-cran-stringi/stringi/man/
H A Dstri_split.Rd18 tokens_only = FALSE,
29 tokens_only = FALSE,
40 tokens_only = FALSE,
51 tokens_only = FALSE,
72 \item{tokens_only}{single logical value;
107 Otherwise, if \code{tokens_only} is \code{FALSE} (which is the default),
110 On the other hand, if \code{tokens_only} is \code{TRUE},
131 stri_split_fixed('a_b_c__d', '_', n=2, tokens_only=FALSE) # 'a' & remainder
132 stri_split_fixed('a_b_c__d', '_', n=2, tokens_only=TRUE) # 'a' & 'b' only
133 stri_split_fixed('a_b_c__d', '_', n=4, omit_empty=TRUE, tokens_only=TRUE)
[all …]
H A Dstri_split_boundaries.Rd10 tokens_only = FALSE,
21 \item{tokens_only}{single logical value; may affect the result if \code{n}
55 Otherwise, if \code{tokens_only} is \code{FALSE} (which is the default),
58 On the other hand, if \code{tokens_only} is \code{TRUE},
/dports/textproc/R-cran-stringi/stringi/src/
H A Dstri_search_boundaries_split.cpp69 SEXP stri_split_boundaries(SEXP str, SEXP n, SEXP tokens_only, SEXP simplify, SEXP opts_brkiter) in stri_split_boundaries() argument
71 bool tokens_only1 = stri__prepare_arg_logical_1_notNA(tokens_only, "tokens_only"); in stri_split_boundaries()
H A Dstri_search_class_split.cpp86 SEXP omit_empty, SEXP tokens_only, SEXP simplify) in stri_split_charclass() argument
88 bool tokens_only1 = stri__prepare_arg_logical_1_notNA(tokens_only, "tokens_only"); in stri_split_charclass()
H A Dstri_search_coll_split.cpp88 SEXP tokens_only, SEXP simplify, SEXP opts_collator) in stri_split_coll() argument
90 bool tokens_only1 = stri__prepare_arg_logical_1_notNA(tokens_only, "tokens_only"); in stri_split_coll()
H A Dstri_search_fixed_split.cpp91 SEXP omit_empty, SEXP tokens_only, SEXP simplify, SEXP opts_fixed) in stri_split_fixed() argument
94 bool tokens_only1 = stri__prepare_arg_logical_1_notNA(tokens_only, "tokens_only"); in stri_split_fixed()
H A Dstri_search_regex_split.cpp85 SEXP tokens_only, SEXP simplify, SEXP opts_regex) in stri_split_regex() argument
87 bool tokens_only1 = stri__prepare_arg_logical_1_notNA(tokens_only, "tokens_only"); in stri_split_regex()
H A Dstri_exports.h226 SEXP omit_empty=Rf_ScalarLogical(FALSE), SEXP tokens_only=Rf_ScalarLogical(FALSE),
273 SEXP omit_empty=Rf_ScalarLogical(FALSE), SEXP tokens_only=Rf_ScalarLogical(FALSE),
323 SEXP omit_empty=Rf_ScalarLogical(FALSE), SEXP tokens_only=Rf_ScalarLogical(FALSE),
370 SEXP tokens_only=Rf_ScalarLogical(FALSE), SEXP simplify=Rf_ScalarLogical(FALSE));
398 SEXP tokens_only=Rf_ScalarLogical(FALSE),
/dports/textproc/R-cran-stringi/stringi/
H A DNEWS649 `n`, `tokens_only`, and `simplify` arguments. Additionally,
691 `stri_split_regex()`, `stri_split_coll()` gained a `tokens_only` parameter,