JavaScript RegExp - p.p
Description
p.p matches any string containing p, followed by any character, in turn followed by another p.
Example
Following example shows usage of RegExp expression.
<html>
<head>
<title>JavaScript RegExp</title>
</head>
<body>
<script type = "text/javascript">
var str = "pap";
var pattern = /p.p/g;
var result = str.match(pattern);
document.write("Test 1 - returned value : " + result);
str = "pp";
result = str.match(pattern);
document.write("<br/>Test 2 - returned value : " + result);
</script>
</body>
</html>
Output
Test 1 - returned value : pap Test 2 - returned value : null
Advertisements