2018-09-30 23:01:58 +01:00
---
id: 587d7db5367417b2b2512b95
title: Match Single Character with Multiple Possibilities
challengeType: 1
2019-08-05 09:17:33 -07:00
forumTopicId: 301357
2021-01-13 03:31:00 +01:00
dashedName: match-single-character-with-multiple-possibilities
2018-09-30 23:01:58 +01:00
---
2020-11-27 19:02:05 +01:00
# --description--
You learned how to match literal patterns (`/literal/` ) and wildcard character (`/./` ). Those are the extremes of regular expressions, where one finds exact matches and the other matches everything. There are options that are a balance between the two extremes.
You can search for a literal pattern with some flexibility with < dfn > character classes</ dfn > . Character classes allow you to define a group of characters you wish to match by placing them inside square (`[` and `]` ) brackets.
For example, you want to match `"bag"` , `"big"` , and `"bug"` but not `"bog"` . You can create the regex `/b[aiu]g/` to do this. The `[aiu]` is the character class that will only match the characters `"a"` , `"i"` , or `"u"` .
2019-05-17 06:20:30 -07:00
```js
let bigStr = "big";
let bagStr = "bag";
let bugStr = "bug";
let bogStr = "bog";
let bgRegex = /b[aiu]g/;
bigStr.match(bgRegex); // Returns ["big"]
bagStr.match(bgRegex); // Returns ["bag"]
bugStr.match(bgRegex); // Returns ["bug"]
bogStr.match(bgRegex); // Returns null
```
2020-11-27 19:02:05 +01:00
# --instructions--
Use a character class with vowels (`a` , `e` , `i` , `o` , `u` ) in your regex `vowelRegex` to find all the vowels in the string `quoteSample` .
**Note**
Be sure to match both upper- and lowercase vowels.
# --hints--
You should find all 25 vowels.
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
assert(result.length == 25);
2018-09-30 23:01:58 +01:00
```
2020-11-27 19:02:05 +01:00
Your regex `vowelRegex` should use a character class.
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
assert(/\[.*\]/.test(vowelRegex.source));
```
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
Your regex `vowelRegex` should use the global flag.
2018-09-30 23:01:58 +01:00
```js
2020-11-27 19:02:05 +01:00
assert(vowelRegex.flags.match(/g/).length == 1);
2018-09-30 23:01:58 +01:00
```
2020-11-27 19:02:05 +01:00
Your regex `vowelRegex` should use the case insensitive flag.
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
assert(vowelRegex.flags.match(/i/).length == 1);
```
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
Your regex should not match any consonants.
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
assert(!/[b-df-hj-np-tv-z]/gi.test(result.join()));
```
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
# --seed--
## --seed-contents--
```js
let quoteSample = "Beware of bugs in the above code; I have only proved it correct, not tried it.";
let vowelRegex = /change/; // Change this line
let result = vowelRegex; // Change this line
```
# --solutions--
2018-09-30 23:01:58 +01:00
```js
2019-05-03 03:05:26 -07:00
let quoteSample = "Beware of bugs in the above code; I have only proved it correct, not tried it.";
let vowelRegex = /[aeiou]/gi; // Change this line
let result = quoteSample.match(vowelRegex); // Change this line
2018-09-30 23:01:58 +01:00
```