About 933 results
Open links in new tab
  1. Regular expressions - JavaScript | MDN - MDN Web Docs

    Mar 17, 2026 · Regular expressions are patterns used to match character combinations in strings. In JavaScript, regular expressions are also objects. These patterns are used with the exec() and test() …

  2. JavaScript RegExp Patterns - W3Schools

    Regular Expression Groups (aka capturing groups) allows parts of a matched string to be extracted and reused. They are created by enclosing a pattern within parentheses ():

  3. JavaScript RegExp (Regular Expression) - GeeksforGeeks

    May 2, 2026 · JavaScript RegExp (Regular Expressions) are patterns used to match, search, and manipulate text in strings. They are widely used for validation, parsing, and text processing tasks in …

  4. JavaScript Regular Expressions Cheat Sheet

    JavaScript regex cheat sheet with pattern syntax, flags, lookaheads, capture groups, common patterns, and practical code examples.

  5. Regular Expressions: The Guide I Always Wanted (2026)

    1 day ago · Regular Expressions: The Guide I Always Wanted (2026) Regex isn't magic. It's a... Tagged with beginners, javascript, programming, tutorial.

  6. Javascript Regex

    Regex stands for regular expressions. Regex is a powerful tool that allows you to define search patterns. In JavaScript, regular expressions are incredibly useful for various tasks such as data validations, …

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

  8. Javascript Regular Expressions

    Often abbreviated as regex or regexp, are sequences of characters that form a search pattern.

  9. Regular expression syntax cheat sheet - JavaScript | MDN

    Mar 17, 2026 · Regular expression syntax cheat sheet 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 …

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