/[b-ds-z]

You can search for range(s) of characters specified between []

/[a-d] will match on a, b, c, and d.
You can also define more than one range
/[b-ds-z] will match for b through d and s through z.

Further Reading

:h / :h /[]

More Gifs