<!DOCTYPE html>
<html>
<body>

<p>Click the button to return the position where the newline character was found in a string.</p>

<button onclick="myFunction()">Try it</button>

<p id="demo"></p>

<script>
function myFunction() {
    var str = "Visit W3Schools.\nLearn JavaScript.";
    var patt1 = /\n/;
    var result = str.search(patt1);
    document.getElementById("demo").innerHTML = result;
}
</script>

</body>
</html>