JavaScript RegExp - [^aeiou]
Description
[^aeiou] matches a single character outside the given set.
Example
Following example shows usage of RegExp expression.
<html>
<head>
<title>JavaScript RegExp</title>
</head>
<body>
<script type = "text/javascript">
var str = "first alphabet";
var pattern = /[^abcde]/g;
var result = str.match(pattern);
document.write("Test 1 - returned value : " + result);
str = "second";
result = str.match(pattern);
document.write("<br/>Test 2 - returned value : " + result);
</script>
</body>
</html>
Output
Test 1 - returned value : f,i,r,s,t, ,l,p,h,t Test 2 - returned value : s,o,n
Advertisements