JavaScript RegExp - [a-zA-Z]
Description
[a-zA-Z] matches any character from lowercase a through uppercase Z.
Example
Following example shows usage of RegExp expression.
<html>
<head>
<title>JavaScript RegExp</title>
</head>
<body>
<script type = "text/javascript">
var str = "first1";
var pattern = /[a-zA-Z]/g;
var result = str.match(pattern);
document.write("Test 1 - returned value : " + result);
str = "Second2";
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 Test 2 - returned value : S,e,c,o,n,d
Advertisements