About 2,710 results
Open links in new tab
  1. JavaScript String match () Method - W3Schools

    Description The match () method matches a string against a regular expression ** The match () method returns an array with the …

  2. String.prototype.match () - JavaScript | MDN - MDN Web Docs

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

  3. JavaScript String match () Method - GeeksforGeeks

    Jun 11, 2026 · The match () method in JavaScript is used for identifying and retrieving substrings that fit a specified pattern, defined …

  4. JavaScript match Function - Tutorial Gateway

    The JavaScript match function is one of the String Functions that is used to search for specified strings & return an array of substrings.

  5. JavaScript String Search - W3Schools

    JavaScript String match () The match () method returns an array containing the results of matching a string against a string (or a …

  6. JavaScript String match () Method - Online Tutorials Library

    The JavaScript String match() method searches a string or a regular expression in the original string and returns an array with all …

  7. JavaScript Demo: String.match ()

    const paragraph = 'The quick brown fox jumps over the lazy dog. It barked.';

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

  9. The String `match()` Function in JavaScript - Mastering JS

    Feb 2, 2023 · JavaScript's String `match()` function lets you test whether a string matches a given regexp. It also has some neat …

  10. JavaScript Regex match (): Match a String Against a Regular Expression

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