2018-09-30 23:01:58 +01:00
---
id: 587d7db7367417b2b2512b9e
title: Match Ending String Patterns
challengeType: 1
2019-08-05 09:17:33 -07:00
forumTopicId: 301352
2018-09-30 23:01:58 +01:00
---
## Description
<section id='description'>
In the last challenge, you learned to use the <code>caret</code> character to search for patterns at the beginning of strings. There is also a way to search for patterns at the end of strings.
You can search the end of strings using the <code>dollar sign</code> character <code>$</code> at the end of the regex.
2019-05-17 06:20:30 -07:00
```js
let theEnding = "This is a never ending story";
let storyRegex = /story$/;
storyRegex.test(theEnding);
// Returns true
let noEnding = "Sometimes a story will have to end";
storyRegex.test(noEnding);
// Returns false
```
2018-09-30 23:01:58 +01:00
</section>
## Instructions
<section id='instructions'>
Use the anchor character (<code>$</code>) to match the string <code>"caboose"</code> at the end of the string <code>caboose</code>.
</section>
## Tests
<section id='tests'>
```yml
2018-10-04 14:37:37 +01:00
tests:
- text: You should search for <code>"caboose"</code> with the dollar sign <code>$</code> anchor in your regex.
2019-07-24 02:32:04 -07:00
testString: assert(lastRegex.source == "caboose$");
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(lastRegex.flags == "");
2018-10-04 14:37:37 +01:00
- text: You should match <code>"caboose"</code> at the end of the string <code>"The last car on a train is the caboose"</code>
2019-07-24 02:32:04 -07:00
testString: assert(lastRegex.test("The last car on a train is the caboose"));
2018-09-30 23:01:58 +01:00
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
let caboose = "The last car on a train is the caboose";
let lastRegex = /change/; // Change this line
let result = lastRegex.test(caboose);
```
</div>
</section>
## Solution
<section id='solution'>
```js
2019-05-03 03:05:26 -07:00
let caboose = "The last car on a train is the caboose";
let lastRegex = /caboose$/; // Change this line
let result = lastRegex.test(caboose);
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>