.*any character (except for line terminators), repeated any number of times
httpthe literal text http (case sensitive) s?optionally matches the literal s (11510 / 1638 / 7316) (case sensitive)
Negated Character Class[^\s]+ +matches at least one character outside the set below:
\sany whitespace character
.*any character (except for line terminators), repeated any number of times