Q:

How to find substring between the two words using jQuery

0

How to find substring between the two words using jQuery

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Use the JavaScript match() method

You can use the JavaScript match() method to extract substring between two words.

The following example will show you how to extract substring between the two words using the match() method and a simple regular expression pattern.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery Get Substring Between Two Words</title>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script>
    $(document).ready(function(){
        $("button").click(function(){
            var myStr = "The quick brown fox jumps over the lazy dog.";
            var subStr = myStr.match("quick(.*)lazy");
            alert(subStr[1]);
        });
    });
</script>
</head>
<body>
    <p>Click the following button to get the substring between the word "quick" and "lazy" from the string "The quick brown fox jumps over the lazy dog."</p>
    <button type="button">Get Substring</button>
</body>
</html>

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

JavaScript / jQuery Frequently Asked Questions

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
How to Get the Value of Selected Option in a Selec... >>
<< How to calculate the number of words in a string u...