About 414,000 results
Open links in new tab
  1. Regular expression syntax cheat sheet - JavaScript | MDN

    2 days ago · This page provides an overall cheat sheet of all the capabilities of RegExp syntax by aggregating the content of the articles in the RegExp guide. If you need more information on a …

  2. 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.

  3. 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 …

  4. RegExr: Learn, Build, & Test RegEx

    Menu RegExr is an online tool to learn, build, & test Regular Expressions (RegEx / RegExp). Supports JavaScript & PHP/PCRE RegEx. Results update in real-time as you type. Roll over a …

  5. python - In regex, what does [\w*] mean? - Stack Overflow

    Oct 16, 2009 · \w only matches a single character, not an entire word. You would need a quantifier like +, * or {n,m} to actually match an entire word (i.e. more than a single character)

  6. Regex Cheat Sheet

    If you are a complete beginner, you should get a firm grasp of basic regex syntax just by reading the examples in the tables. I tried to introduce features in a logical order and to keep out …

  7. JavaScript RegExp \w Metacharacter - W3Schools

    Description The \w metacharacter matches word characters. A word character is a character a-z, A-Z, 0-9, including _ (underscore).

  8. Regex Cheat Sheet - Common Patterns & Syntax Guide

    This cheat sheet is a comprehensive guide to the most common regular expression patterns, syntax, and constructs. Use it as a quick reference for your regex development.

  9. Regex Tutorial - How to write Regular Expressions?

    Apr 12, 2024 · Here's how to write regular expressions: Start by understanding the special characters used in regex, such as ".", "*", "+", "?", and more. Choose a programming language …

  10. Regular Expression HOWTO — Python 3.14.2 documentation

    2 days ago · If the regex pattern is a string, \w will match all the characters marked as letters in the Unicode database provided by the unicodedata module. You can use the more restricted …