Link Search Menu Expand Document

Match Anything with Wildcard Period

Summary

  • The wildcard character . is used to search based on any one or more characters.

Final Code

let exampleStr = "Let's have fun with regular expressions!";
let unRegex = /un./; // Change this line
let result = unRegex.test(exampleStr);