What is the best way to check if a QString contains only empty spaces.

isEmpty() or isNull() don't do what I want.

I need to know if my QString contains a) only empty spaces (on any length), or b) any combination of symbols and empty spaces. What is the fastest way to do that check?

Thanks!