Sometimes whitespace characters around strings are not wanted but are there. Typical processing of strings is to remove the whitespace at the start and end of it.
</section>
## Instructions
<sectionid='instructions'>
Write a regex and use the appropriate string methods to remove whitespace at the beginning and end of strings.
<strong>Note</strong><br>The <code>.trim()</code> method would work here, but you'll need to complete this challenge using regular expressions.
</section>
## Tests
<sectionid='tests'>
```yml
- text: '<code>result</code> should equal to <code>"Hello, World!"</code>'