2.7 KiB
2.7 KiB
id, title, challengeType, forumTopicId, localeTitle
id | title | challengeType | forumTopicId | localeTitle |
---|---|---|---|---|
587d7db9367417b2b2512ba4 | Match Non-Whitespace Characters | 1 | 18210 | Совпадение символов без пробелов |
Description
\s
, со строчной s
. Вы также можете искать все, кроме пробелов. Поиск непробельных с помощью \S
, который является прописной s
. Этот шаблон не будет соответствовать пробелам, возврату каретки, вкладке, фиду формы и новым строковым символам. Вы можете думать, что это похоже на класс символов [^ \r\t\f\n\v]
. let whiteSpace = "Пробел. Пробел везде!"
пусть nonSpaceRegex = / \ S / g;
whiteSpace.match (nonSpaceRegex) .length; // Возвращает 32
Instructions
countNonWhiteSpace
чтобы искать несколько небелых символов в строке.
Tests
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);
Challenge Seed
let sample = "Whitespace is important in separating words";
let countNonWhiteSpace = /change/; // Change this line
let result = sample.match(countNonWhiteSpace);
Solution
let sample = "Whitespace is important in separating words";
let countNonWhiteSpace = /\S/g; // Change this line
let result = sample.match(countNonWhiteSpace);