About 1,400,000 results
Open links in new tab
  1. JavaScript RegExp Reference - W3Schools

    A regular expression is a pattern of characters. The pattern is used for searching and replacing characters in strings. The RegExp Object is a regular expression with added Properties and …

  2. Regular expressions - JavaScript | MDN - MDN Web Docs

    Jan 24, 2025 · These patterns are used with the exec() and test() methods of RegExp, and with the match(), matchAll(), replace(), replaceAll(), search(), and split() methods of String. This …

  3. JavaScript RegExp (Regular Expression) - GeeksforGeeks

    Dec 3, 2024 · A regular expression is a special sequence of characters that defines a search pattern, typically used for pattern matching within text. It’s often used for tasks such as …

  4. Regular Expressions (RegEx) in JavaScript – A Handbook for …

    Feb 27, 2024 · How to Use Regular Expressions in JavaScript. You can use regular expressions with various methods available for both the RegExp and String objects in JavaScript. Some …

  5. JavaScript Regex - Programiz

    There are two ways you can create a regular expression in JavaScript. The regular expression consists of a pattern enclosed between slashes /. For example, Here, /abc/ is a regular …

  6. Regular Expressions in JavaScript - Tutorial Republic

    In this tutorial you will learn how regular expressions work, as well as how to use them to perform pattern matching in an efficient way in JavaScript. Regular Expressions, commonly known as " …

  7. JavaScript Regular Expressions - JavaScript Tutorial

    In JavaScript, regular expressions are objects. JavaScript provides the built-in RegExp type that allows you to work with regular expressions effectively. Regular expressions are useful for …

  8. Patterns and flags - The Modern JavaScript Tutorial

    Dec 7, 2020 · Regular expressions are patterns that provide a powerful way to search and replace in text. In JavaScript, they are available via the RegExp object, as well as being integrated in …

  9. Regular Expressions - Eloquent JavaScript

    Regular expressions are a way to describe patterns in string data. They form a small, separate language that is part of JavaScript and many other languages and systems. Regular …

  10. Regular expression syntax cheat sheet - JavaScript | MDN - MDN Web Docs

    Oct 28, 2024 · 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 …

Refresh