JavaScript RegExp - [aeiou]



Description

[aeiou] matches a single character in the given set.

Example

Following example shows usage of RegExp expression.


   
      JavaScript RegExp
   
   
   
      
   

Output

Test 1 - returned value : a,a,b,e
Test 2 - returned value : e,c,d
Advertisements