sf_match: sf_match

View source: R/RcppExports.R

sf_matchR Documentation

sf_match

Description

Returns a vector of the positions of x in table

Usage

sf_match(x, table, nthreads = getOption("stringfish.nthreads", 1L))

Arguments

x

A character vector to search for in table

table

A character vector to be matched against x

nthreads

Number of threads to use

Details

Note: similarly to the base R function, long "table" vectors are not supported. This is due to the maximum integer value that can be returned ('.Machine$integer.max')

Value

An integer vector of the indicies of each x element's position in table

See Also

match

Examples

if(getRversion() >= "3.5.0") {
sf_match("c", letters)
}

stringfish documentation built on May 31, 2023, 5:19 p.m.