RegExp परीक्षण () विधि का उपयोग यह जांचने के लिए किया जाता है कि स्ट्रिंग में कोई मिलान होता है या नहीं। यदि मैच होता है तो यह सच है अन्यथा गलत है।
RegExp परीक्षण () विधि के लिए कोड निम्नलिखित है -
उदाहरण
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } div { font-size: 20px; font-weight: 500; } </style> </head> <body> <h1>JavaScript RegExp test() method</h1> <div class="sample">The quick brown fox jumps over the lazy dog</div> <button class="Btn">CLICK HERE</button> <div class="result"></div> <h3>Click on the above button to check if the above string contains 'fox'.</h3> <script> let fillEle = document.querySelector(".sample"); let result = document.querySelector(".result"); let regex = new RegExp("fox"); let regResult = regex.test(fillEle.innerHTML); document.querySelector(".Btn").addEventListener("click", () => { if (regResult) result.innerHTML = "The above string contains fox"; else result.innerHTML = "The above string doesn't contain fox"; }); </script> </body> </html>
आउटपुट
"यहां क्लिक करें" बटन पर क्लिक करने पर -