Javascript examples for RegExp:Bracket
Do a global search for the character-span NOT from uppercase "A" to uppercase "E":
<!DOCTYPE html> <html> <body> <button onclick="myFunction()">Test</button> <p id="demo"></p> <script> function myFunction() {//from ww w.java 2s . co m var str = "The following code shows HOW TO !"; var patt1 = /[^A-E]/g; var result = str.match(patt1); document.getElementById("demo").innerHTML = result; } </script> </body> </html>