This commit adds the pre-existing challenge guide topics in the forum to the forntmatter of their challenge markdown files.
		
			
				
	
	
		
			73 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			73 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| ---
 | |
| id: 587d7db9367417b2b2512ba4
 | |
| title: Match Non-Whitespace Characters
 | |
| challengeType: 1
 | |
| forumTopicId: 18210
 | |
| ---
 | |
| 
 | |
| ## Description
 | |
| <section id='description'>
 | |
| You learned about searching for whitespace using <code>\s</code>, with a lowercase <code>s</code>. You can also search for everything except whitespace.
 | |
| Search for non-whitespace using <code>\S</code>, which is an uppercase <code>s</code>. This pattern will not match whitespace, carriage return, tab, form feed, and new line characters. You can think of it being similar to the character class <code>[^ \r\t\f\n\v]</code>.
 | |
| 
 | |
| ```js
 | |
| let whiteSpace = "Whitespace. Whitespace everywhere!"
 | |
| let nonSpaceRegex = /\S/g;
 | |
| whiteSpace.match(nonSpaceRegex).length; // Returns 32
 | |
| ```
 | |
| 
 | |
| </section>
 | |
| 
 | |
| ## Instructions
 | |
| <section id='instructions'>
 | |
| Change the regex <code>countNonWhiteSpace</code> to look for multiple non-whitespace characters in a string.
 | |
| </section>
 | |
| 
 | |
| ## Tests
 | |
| <section id='tests'>
 | |
| 
 | |
| ```yml
 | |
| tests:
 | |
|   - text: Your regex should use the global flag.
 | |
|     testString: assert(countNonWhiteSpace.global);
 | |
|   - text: Your regex should use the shorthand character <code>\S/code> to match all non-whitespace characters.
 | |
|     testString: assert(/\\S/.test(countNonWhiteSpace.source));
 | |
|   - text: Your regex should find 35 non-spaces in <code>"Men are from Mars and women are from Venus."</code>
 | |
|     testString: assert("Men are from Mars and women are from Venus.".match(countNonWhiteSpace).length == 35);
 | |
|   - text: 'Your regex should find 23 non-spaces in <code>"Space: the final frontier."</code>'
 | |
|     testString: 'assert("Space: the final frontier.".match(countNonWhiteSpace).length == 23);'
 | |
|   - text: Your regex should find 21 non-spaces in <code>"MindYourPersonalSpace"</code>
 | |
|     testString: assert("MindYourPersonalSpace".match(countNonWhiteSpace).length == 21);
 | |
| 
 | |
| ```
 | |
| 
 | |
| </section>
 | |
| 
 | |
| ## Challenge Seed
 | |
| <section id='challengeSeed'>
 | |
| 
 | |
| <div id='js-seed'>
 | |
| 
 | |
| ```js
 | |
| let sample = "Whitespace is important in separating words";
 | |
| let countNonWhiteSpace = /change/; // Change this line
 | |
| let result = sample.match(countNonWhiteSpace);
 | |
| ```
 | |
| 
 | |
| </div>
 | |
| 
 | |
| 
 | |
| 
 | |
| </section>
 | |
| 
 | |
| ## Solution
 | |
| <section id='solution'>
 | |
| 
 | |
| ```js
 | |
| let sample = "Whitespace is important in separating words";
 | |
| let countNonWhiteSpace = /\S/g; // Change this line
 | |
| let result = sample.match(countNonWhiteSpace);
 | |
| ```
 | |
| 
 | |
| </section>
 |