2018-09-30 23:01:58 +01:00
---
id: 587d7db7367417b2b2512b9d
title: Match Beginning String Patterns
challengeType: 1
---
## Description
< section id = 'description' >
Prior challenges showed that regular expressions can be used to look for a number of matches. They are also used to search for patterns in specific positions in strings.
In an earlier challenge, you used the < code > caret< / code > character (< code > ^< / code > ) inside a < code > character set< / code > to create a < code > negated character set< / code > in the form < code > [^thingsThatWillNotBeMatched]< / code > . Outside of a < code > character set< / code > , the < code > caret< / code > is used to search for patterns at the beginning of strings.
2019-05-17 06:20:30 -07:00
```js
let firstString = "Ricky is first and can be found.";
let firstRegex = /^Ricky/;
firstRegex.test(firstString);
// Returns true
let notFirst = "You can't find Ricky now.";
firstRegex.test(notFirst);
// Returns false
```
2018-09-30 23:01:58 +01:00
< / section >
## Instructions
< section id = 'instructions' >
Use the < code > caret< / code > character in a regex to find < code > "Cal"< / code > only in the beginning of the string < code > rickyAndCal< / code > .
< / section >
## Tests
< section id = 'tests' >
```yml
2018-10-04 14:37:37 +01:00
tests:
- text: Your regex should search for < code > "Cal"</ code > with a capital letter.
2019-07-24 02:32:04 -07:00
testString: assert(calRegex.source == "^Cal");
2018-10-04 14:37:37 +01:00
- text: Your regex should not use any flags.
2019-07-24 02:32:04 -07:00
testString: assert(calRegex.flags == "");
2018-10-04 14:37:37 +01:00
- text: Your regex should match < code > "Cal"</ code > at the beginning of the string.
2019-07-24 02:32:04 -07:00
testString: assert(calRegex.test("Cal and Ricky both like racing."));
2018-10-04 14:37:37 +01:00
- text: Your regex should not match < code > "Cal"</ code > in the middle of a string.
2019-07-24 02:32:04 -07:00
testString: assert(!calRegex.test("Ricky and Cal both like racing."));
2018-09-30 23:01:58 +01:00
```
< / section >
## Challenge Seed
< section id = 'challengeSeed' >
< div id = 'js-seed' >
```js
let rickyAndCal = "Cal and Ricky both like racing.";
let calRegex = /change/; // Change this line
let result = calRegex.test(rickyAndCal);
```
< / div >
< / section >
## Solution
< section id = 'solution' >
```js
2019-05-03 03:05:26 -07:00
let rickyAndCal = "Cal and Ricky both like racing.";
let calRegex = /^Cal/; // Change this line
let result = calRegex.test(rickyAndCal);
2018-09-30 23:01:58 +01:00
```
2019-07-18 08:24:12 -07:00
2018-09-30 23:01:58 +01:00
< / section >