About 1,210,000 results
Open links in new tab
  1. regex101: build, test, and debug regex

    Regular expression tester with syntax highlighting, explanation, cheat sheet for PHP/PCRE, Python, GO, JavaScript, Java, C#/.NET, Rust.

  2. Regular expression HOWTO — Python 3.14.3 documentation

    1 day ago · Regular expression HOWTO ¶ Author: A.M. Kuchling <amk @ amk. ca> Abstract This document is an introductory tutorial to using regular expressions in Python with the re module. It …

  3. Regular Expressions: Regexes in Python (Part 1) – Real Python

    In previous tutorials in this series, you've seen several different ways to compare string values with direct character-by-character comparison. In this tutorial, you'll learn how to perform more complex string …

  4. Python RegEx - W3Schools

    A RegEx, or Regular Expression, is a sequence of characters that forms a search pattern. RegEx can be used to check if a string contains the specified search pattern.

  5. RegExr: Learn, Build, & Test RegEx

    RegExr is an online tool to learn, build, & test Regular Expressions (RegEx / RegExp).

  6. Python RegEx - GeeksforGeeks

    Aug 14, 2025 · A Regular Expression or RegEx is a special sequence of characters that uses a search pattern to find a string or set of strings. It can detect the presence or absence of a text by matching it …

  7. Regular Expression Language - Quick Reference - .NET

    Jun 18, 2022 · In this quick reference, learn to use regular expression patterns to match input text. A pattern has one or more character literals, operators, or constructs.

  8. Regular-Expressions.info - Regex Tutorial, Examples and Reference ...

    Jan 9, 2026 · You can often accomplish with a single regular expression in one or a few lines of code what would otherwise take dozens or hundreds. Many applications and programming languages …

  9. JavaScript Regular Expressions - W3Schools

    Regular Expressions A Regular Expression is a sequence of characters that forms a search pattern. Regex is a common shorthand for a regular expression. JavaScript RegExp is an Object for handling …

  10. Python RegEx (With Examples) - Programiz

    In this tutorial, you will learn about regular expressions (RegEx), and use Python's re module to work with RegEx (with the help of examples).