The string to test for.
true if there was a match for the given string, false otherwise.
assert(Pattern("v|verbose").matchSpaceless("v")); assert(Pattern("v|verbose").matchSpaceless("verbose")); assert(!Pattern("v|verbose").matchSpaceless("lalafell"));
Matches the given input string without splitting up by spaces.