Monday 30 December 2019

How to find substring between the two words using jQuery

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

No comments:

Post a Comment



Asp.net tutorials