About 360,000 results
Open links in new tab
  1. String.prototype.match () - JavaScript | MDN

    Jul 10, 2025 · The match() method of String values retrieves the result of matching this string against a regular expression.

  2. JavaScript String match () Method - W3Schools

    The Difference Between String match () and String search () The match() method returns an array of matches. The search() method returns the position of the first match.

  3. JavaScript String match () Method - GeeksforGeeks

    Jul 11, 2025 · The match () method in JavaScript is used for identifying and retrieving substrings that fit a specified pattern, defined by a regular expression. It is often used when you need to …

  4. String-searching algorithm - Wikipedia

    A string-searching algorithm, sometimes called string-matching algorithm, is an algorithm that searches a body of text for portions that match by pattern. A basic example of string searching …

  5. JavaScript: String match () method - TechOnTheNet

    This JavaScript tutorial explains how to use the string method called match () with syntax and examples. In JavaScript, match () is a string method that is used to find matches based on …

  6. JavaScript Regex match (): Match a String Against a Regular …

    In this tutorial, you'll learn about the JavaScript match () method to match a string against a regular expression.

  7. JavaScript String match () Method: Matching String Pattern

    Feb 5, 2025 · A detailed guide to the JavaScript String match () method, exploring how to use it with regular expressions to search for matches within a string.

  8. String Matching - LeetCode

    Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.

  9. JavaScript | Strings | .match () | Codecademy

    Jun 11, 2025 · The .match() method is used in JavaScript to find parts of a string that match a regular expression. It is commonly applied in tasks such as extracting numbers or words, …

  10. Javascript String match () - Programiz

    In this tutorial, we will learn about the JavaScript String match () method with the help of examples.