RegexWars
Tier 6 · Adeptextract

Long Words Only

Extract every run of five or more lower-case letters.

{n,} means "n or more". Leave the upper bound off entirely and the quantifier is greedy — it takes as much as it can.

Your pattern1 chars · par 10
//g
Flags
Start typing — tests run as you go.0 of 3 visible tests passing
Test cases
  • the quick brown fox jumps over→ ["quick", "brown", "jumps"]
  • a bb ccc dddd eeeee→ ["eeeee"]
  • no big one at all→ []

+ 2 hidden tests, checked when you submit. They are what stops a pattern that only fits the examples above.