About 39,600,000 results
Open links in new tab
  1. Regular expression - Wikipedia

    Regular expressions are used in search engines, in search and replace dialogs of word processors and text editors, in text processing utilities such as sed and AWK, and in lexical analysis. Regular …

  2. Regex Tutorial - How to write Regular Expressions?

    Apr 12, 2024 · Regular expressions are a generalized way to match patterns with sequences of characters. It is used in every programming language like C++, Java and Python. What is a regular …

  3. What is Regex? A Beginner-Friendly Introduction – Regex Forge

    Mar 1, 2025 · If you’ve ever needed to find specific text in a large document, validate user input, or extract key information from messy data, you’ve probably encountered regular expressions —often …

  4. What Is a Regex (Regular Expression)? - Computer Hope

    Aug 16, 2024 · Short for regular expression, a regex is a string of text that lets you create patterns that help match, locate, and manage text. Perl is a great example of a programming language that uses …

  5. What is Regex? Quick Syntax & Cheat Sheet - 6thman.digital

    Aug 23, 2025 · What Is Regex? Regex (short for regular expression or regexp) is a compact language for describing text patterns. If you’ve ever needed to find, validate, or transform strings at scale, …

  6. What is regex? And how to use it without code - Zapier

    Aug 11, 2025 · With regex, you can define that you're looking for phone numbers in the format of 10 digits (123-456-7890). I'm most familiar with using regex in Python, but it also works in multiple other …

  7. The Complete Guide to Regular Expressions (Regex) - CoderPad

    Apr 14, 2022 · Think of it as a suped-up text search shortcut, but a regular expression adds the ability to use quantifiers, pattern collections, special characters, and capture groups to create extremely …

  8. Regular Expression Tutorial - Learn How to Use Regular Expressions

    Oct 29, 2025 · Basically, a regular expression is a pattern describing a certain amount of text. Their name comes from the mathematical theory on which they are based. But we will not dig into that. …

  9. Regular Expression: Definition, Purpose, and Examples

    A regular expression (often shortened to regex) is a compact pattern used to search, match, and manipulate text. Instead of writing long, manual string checks, a regex lets you describe what you’re …

  10. CS103 Guide to Regular Expressions - web.stanford.edu

    Regular expressions are an amazingly powerful tool for describing collections of strings. However, they can take some time to get used to and represent a totally different problem-solving strategy than the …