About 15,600,000 results
Open links in new tab
  1. grep function - RDocumentation

    Value grep(value = FALSE) returns a vector of the indices of the elements of x that yielded a match (or not, for invert = TRUE). This will be an integer vector unless the input is a long …

  2. R: How to Use grep () for Pattern Matching and Replacement

    May 23, 2024 · This tutorial explains how to use the grep () function in R for pattern matching and replacement, including examples.

  3. grep command in Unix/Linux - GeeksforGeeks

    Nov 3, 2025 · The grep command is one of the most useful tools in Linux and Unix systems. It is used to search for specific words, phrases, or patterns inside text files, and shows the …

  4. Using grep: 5 game-changing command examples - How-To Geek

    2 days ago · The Linux grep command is a powerful search tool. From my experience, I’ve realized that most of the power I get from it comes from just a handful of options. These are …

  5. Linux: Recursive file searching with `grep -r` (like grep + find)

    Aug 4, 2024 · Recurse in directories skip file matching PATTERN. As you’ve seen, the grep -r command makes it easy to recursively search directories for all files that match the search …

  6. grepl () and grep () functions in R ️ [Pattern Matching]

    The grepl and grep functions allows you to search for pattern coincidences inside a character vector. In this tutorial you will learn their differences and how to use them in several use cases.

  7. How to use grep (with examples) - Linux Audit

    Mar 12, 2025 · Use the capitalized option, grep -R, if you want to include any possible symlinked file to be searched as well. This may take much longer and could result in other file systems to …

  8. Mastering grep () in R: A Fun Guide to Pattern Matching and …

    Today, we’re going back to the wonderful world of grep () – a powerful function for pattern matching and replacement in R. Whether you’re a data wrangling wizard or just starting out, …

  9. Mastering `grep -r` in Linux: A Comprehensive Guide

    Nov 14, 2025 · This blog post will delve into the details of grep -r, covering its fundamental concepts, usage methods, common practices, and best practices. By the end of this guide, …

  10. R grep (): Finding a Position of Matched Pattern

    Apr 24, 2025 · Learn what the grep () function is and how it works. Describe various scenarios, including each argument with code examples.