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 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232
|
# kate: default-dictionary en_US
## This file is part of the 'stringi' package for R.
## Copyright (c) 2013-2024, Marek Gagolewski <https://www.gagolewski.com/>
## All rights reserved.
##
## Redistribution and use in source and binary forms, with or without
## modification, are permitted provided that the following conditions are met:
##
## 1. Redistributions of source code must retain the above copyright notice,
## this list of conditions and the following disclaimer.
##
## 2. Redistributions in binary form must reproduce the above copyright notice,
## this list of conditions and the following disclaimer in the documentation
## and/or other materials provided with the distribution.
##
## 3. Neither the name of the copyright holder nor the names of its
## contributors may be used to endorse or promote products derived from
## this software without specific prior written permission.
##
## THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
## 'AS IS' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
## BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
## FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
## HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
## PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
## OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
## WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
## OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
## EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#' @title
#' Select Elements that Match a Given Pattern
#'
#' @description
#' These functions return or modify a sub-vector where there is a match to
#' a given pattern. In other words, they
#' are roughly equivalent (but faster and easier to use) to a call to
#' \code{str[\link{stri_detect}(str, ...)]} or
#' \code{str[\link{stri_detect}(str, ...)] <- value}.
#'
#' @details
#' Vectorized over \code{str} as well as partially over \code{pattern}
#' and \code{value},
#' with recycling of the elements in the shorter vector if necessary.
#' As the aim here is to subset \code{str}, \code{pattern}
#' cannot be longer than the former. Moreover, if the number of
#' items to replace is not a multiple of length of \code{value},
#' a warning is emitted and the unused elements are ignored.
#' Hence, the length of the output will be the same as length of \code{str}.
#'
#' \code{stri_subset} and \code{stri_subset<-} are convenience functions.
#' They call either \code{stri_subset_regex},
#' \code{stri_subset_fixed}, \code{stri_subset_coll},
#' or \code{stri_subset_charclass},
#' depending on the argument used.
#'
#' @param str character vector; strings to search within
#'
#' @param pattern,regex,fixed,coll,charclass character vector;
#' search patterns (no more than the length of \code{str});
#' for more details refer to \link{stringi-search}
#'
#' @param negate single logical value; whether a no-match is rather of interest
#'
#' @param omit_na single logical value; should missing values be excluded
#' from the result?
#'
#' @param opts_collator,opts_fixed,opts_regex a named list used to tune up
#' the search engine's settings; see
#' \code{\link{stri_opts_collator}}, \code{\link{stri_opts_fixed}},
#' and \code{\link{stri_opts_regex}}, respectively; \code{NULL}
#' for the defaults
#'
#' @param ... supplementary arguments passed to the underlying functions,
#' including additional settings for \code{opts_collator}, \code{opts_regex},
#' \code{opts_fixed}, and so on
#'
#' @param value non-empty character vector of replacement strings;
#' replacement function only
#'
#'
#' @return The \code{stri_subset_*} functions return a character vector.
#' As usual, the output encoding is UTF-8.
#'
#' The \code{stri_subset_*<-} functions modifies \code{str} 'in-place'.
#'
#'
#' @examples
#' stri_subset_regex(c('stringi R', '123', 'ID456', ''), '^[0-9]+$')
#'
#' x <- c('stringi R', '123', 'ID456', '')
#' `stri_subset_regex<-`(x, '[0-9]+$', negate=TRUE, value=NA) # returns a copy
#' stri_subset_regex(x, '[0-9]+$') <- NA # modifies `x` in-place
#' print(x)
#'
#' @family search_subset
#' @export
#' @rdname stri_subset
stri_subset <- function(str, ..., regex, fixed, coll, charclass)
{
providedarg <- c(
regex = !missing(regex),
fixed = !missing(fixed),
coll = !missing(coll),
charclass = !missing(charclass))
if (sum(providedarg) != 1)
stop("you have to specify either `regex`, `fixed`, `coll`, or `charclass`")
if (providedarg["regex"])
stri_subset_regex(str, regex, ...)
else if (providedarg["fixed"])
stri_subset_fixed(str, fixed, ...)
else if (providedarg["coll"])
stri_subset_coll(str, coll, ...)
else if (providedarg["charclass"])
stri_subset_charclass(str, charclass, ...)
}
#' @export
#' @rdname stri_subset
#' @usage stri_subset(str, ..., regex, fixed, coll, charclass) <- value
`stri_subset<-` <- function(str, ..., regex, fixed, coll, charclass, value)
{
providedarg <- c(
regex = !missing(regex),
fixed = !missing(fixed),
coll = !missing(coll),
charclass = !missing(charclass))
if (sum(providedarg) != 1)
stop("you have to specify either `regex`, `fixed`, `coll`, or `charclass`")
if (providedarg["regex"])
`stri_subset_regex<-`(str, regex, ..., value = value)
else if (providedarg["fixed"])
`stri_subset_fixed<-`(str, fixed, ..., value = value)
else if (providedarg["coll"])
`stri_subset_coll<-`(str, coll, ..., value = value)
else if (providedarg["charclass"])
`stri_subset_charclass<-`(str, charclass, ..., value = value)
}
#' @export
#' @rdname stri_subset
stri_subset_fixed <- function(str, pattern, omit_na = FALSE, negate = FALSE, ...,
opts_fixed = NULL)
{
if (!missing(...))
opts_fixed <- do.call(stri_opts_fixed, as.list(c(opts_fixed, ...)))
.Call(C_stri_subset_fixed, str, pattern, omit_na, negate, opts_fixed)
}
#' @export
#' @rdname stri_subset
#' @usage stri_subset_fixed(str, pattern, negate=FALSE, ..., opts_fixed=NULL) <- value
`stri_subset_fixed<-` <- function(str, pattern, negate = FALSE, ...,
opts_fixed = NULL, value)
{
if (!missing(...))
opts_fixed <- do.call(stri_opts_fixed, as.list(c(opts_fixed, ...)))
.Call(C_stri_subset_fixed_replacement, str, pattern, negate, opts_fixed, value)
}
#' @export
#' @rdname stri_subset
stri_subset_charclass <- function(str, pattern, omit_na = FALSE, negate = FALSE)
{
.Call(C_stri_subset_charclass, str, pattern, omit_na, negate)
}
#' @export
#' @rdname stri_subset
#' @usage stri_subset_charclass(str, pattern, negate=FALSE) <- value
`stri_subset_charclass<-` <- function(str, pattern, negate = FALSE, value)
{
.Call(C_stri_subset_charclass_replacement, str, pattern, negate, value)
}
#' @export
#' @rdname stri_subset
stri_subset_coll <- function(str, pattern, omit_na = FALSE, negate = FALSE, ...,
opts_collator = NULL)
{
if (!missing(...))
opts_collator <- do.call(stri_opts_collator, as.list(c(opts_collator, ...)))
.Call(C_stri_subset_coll, str, pattern, omit_na, negate, opts_collator)
}
#' @export
#' @rdname stri_subset
#' @usage stri_subset_coll(str, pattern, negate=FALSE, ..., opts_collator=NULL) <- value
`stri_subset_coll<-` <- function(str, pattern, negate = FALSE, ..., opts_collator = NULL,
value)
{
if (!missing(...))
opts_collator <- do.call(stri_opts_collator, as.list(c(opts_collator, ...)))
.Call(C_stri_subset_coll_replacement, str, pattern, negate, opts_collator, value)
}
#' @export
#' @rdname stri_subset
stri_subset_regex <- function(str, pattern, omit_na = FALSE, negate = FALSE, ...,
opts_regex = NULL)
{
if (!missing(...))
opts_regex <- do.call(stri_opts_regex, as.list(c(opts_regex, ...)))
.Call(C_stri_subset_regex, str, pattern, omit_na, negate, opts_regex)
}
#' @export
#' @rdname stri_subset
#' @usage stri_subset_regex(str, pattern, negate=FALSE, ..., opts_regex=NULL) <- value
`stri_subset_regex<-` <- function(str, pattern, negate = FALSE, ..., opts_regex = NULL,
value)
{
if (!missing(...))
opts_regex <- do.call(stri_opts_regex, as.list(c(opts_regex, ...)))
.Call(C_stri_subset_regex_replacement, str, pattern, negate, opts_regex, value)
}
|