निष्पादन () विधि मिलान के लिए खोज को निष्पादित करती है और यदि मिलान पाठ निर्दिष्ट स्ट्रिंग में पाया जाता है तो इसे वापस कर दिया जाता है अन्यथा शून्य वापस आ जाता है।
जावास्क्रिप्ट निष्पादन () विधि के लिए कोड निम्नलिखित है -
उदाहरण
<!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; } .sample { font-size: 18px; font-weight: 500; } </style> </head> <body> <h1>JavaScript exec()</h1> <div class="sample"> Lorem ipsum dolor, sit amet consectetur adipisicing. </div> <button class="Btn">CLICK HERE</button> <h3> Click on the above buttons to execute regex </h3> <script> let sampleEle = document.querySelector(".sample"); let sampleStr = sampleEle.innerHTML; let pattern = new RegExp("amet"); document.querySelector(".Btn").addEventListener("click", () => { let result = pattern.exec(sampleStr); sampleEle.innerHTML += " <br> String matched = " + result; }); </script> </body> </html>
आउटपुट
"यहां क्लिक करें" बटन पर क्लिक करने पर -