Oletem
9/30/2017 - 2:33 PM

Invert Regular Expression Matches with JavaScript

You can invert any match by using the uppercase version of the regular expression selector.

For example, \s will match any whitespace, and \S will match anything that isn't whitespace.

Instructions Use /\S/g to count the number of non-whitespace characters in testString.


// Setup
var testString = "How many non-space characters are there in this sentence?";

// Only change code below this line.

var expression = /\S/g;  // Для инвертирование параметра поиска - ищи только не - параметр пишем с заглавной буквы

// Only change code above this line

// This code counts the matches of expression in testString
var nonSpaceCount = testString.match(expression).length;