Description Usage Arguments Value See Also Examples
Find string in another string (without regular expressions), returns TRUE
/ FALSE
.
1 | str_contains(string, patternNoRegex)
|
string |
string in which we try to find something |
patternNoRegex |
string we want to find, "as it is" - no regular exprressions |
TRUE
/ FALSE
1 2 3 4 | str_contains("Hello world", "wor") # TRUE
str_contains("Hello world", "WOR") # FALSE
str_contains(tolower("Hello world"), tolower("wor")) # TRUE
str_contains("Hello world", "") # TRUE
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.