Explain ‘dotAll’ flag for regular expressions in JavaScript


The dotAll flag returns true or false depending upon if the s flag has been set in the regular expression or not.

Following is the code to implement dotAll flag for regular expressions in JavaScript −

Example

 Live Demo

<!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;
   }
   .result {
      font-size: 20px;
      font-weight: 500;
   }
</style>
</head>
<body>
<h1>dotAll flag for regular expressions</h1>
<div style="color: green;" class="result"></div>
<button class="btn">CLICK HERE</button>
<h3>
Click on the above button to know if s flag has been set in regex or not
</h3>
<script>
   let btnEle = document.querySelector(".btn");
   let resEle = document.querySelector(".result");
   const regex = new RegExp("Hello", "s");
   btnEle.addEventListener("click", () => {
      resEle.innerHTML = "The s flag has been set : " + regex.dotAll;
   });
</script>
</body>
</html>

Output

The above code will produce the following output −

On clicking the ‘CLICK HERE’ button −

Updated on: 15-Jul-2020

170 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements