freeCodeCamp/guide/english/certifications/javascript-algorithms-and-d.../regular-expressions/match-literal-strings/index.md

24 lines
895 B
Markdown
Raw Normal View History

2018-10-12 19:37:13 +00:00
---
title: Match Literal Strings
---
## Match Literal Strings
<!-- The article goes here, in GitHub-flavored Markdown. Feel free to add YouTube videos, images, and CodePen/JSBin embeds -->
This challenge is not any different from the previous; in this case though, you are learning that string literals are case-sensitive. That means, when you test to see if a string has a literal, it will search for the exact case (lower or upper) inside the string. You will learn how to find string literals regardless of their case, in an upcoming lesson.
In this challenge, you're finding Waldo...inside a string!
## Hint 1:
Change the line to have the correct string literal.
## Spoiler Alert - Solution Ahead!
## Solution:
```javascript
let waldoIsHiding = "Somewhere Waldo is hiding in this text.";
let waldoRegex = /Waldo/; // Change this line
let result = waldoRegex.test(waldoIsHiding);
```