How to useJavaScript RegExp test() Method in Javascript

The RegExp test() Method in JavaScript is used to test for the match in a string. If there is a match this method returns true else it returns false.

Syntax: 

RegExpObject.test( str )

Example: This example illustrates matching a single character with Multiple possibilities using the RegExp test() Method.

Javascript
// Create input string
let string = "w3wiki";

// Create global regular expression 
// containing letters to be matched
let regx = /[aeiou]/g;

// Store results from RegX test method
let result = regx.test(string);

// Display the result
console.log(result);

Output
true

JavaScript Program to Match Single Character with Multiple Possibilities

In this article, we will write programs to check all possible matching in JavaScript. We will check the occurrence of characters individually in the given string or sequence. In this article, we will check the occurrence of vowels in the given string.

Table of Content

  • Using JavaScript RegExp test() Method
  • Using JavaScript String match() Method
  • Using JavaScript String includes() Method
  • Using JavaScript String indexOf() Method
  • Using Array.some()

Similar Reads

Approach 1: Using JavaScript RegExp test() Method

The RegExp test() Method in JavaScript is used to test for the match in a string. If there is a match this method returns true else it returns false....

Approach 2: Using JavaScript String match() Method

The JavaScript String match() method is an inbuilt function in JavaScript used to search a string for a match against any regular expression. If the match is found, then this will return the match as an array....

Approach 3: Using JavaScript String includes() Method

JavaScript String includes() method determines whether a string contains the given characters within it or not. This method returns true if the string contains the characters, otherwise, it returns false....

Approach 4: Using JavaScript String indexOf() Method

The JavaScript String indexOf() method finds the index of the first occurrence of the argument string in the given string. The value returned is 0-based....

Using Array.some()

Using Array.some(), convert the string to an array of characters, then check if any specified characters exist in the array. If any character matches, some() returns true; otherwise, it returns false....