Vim: find exactly starting spaces

For example if :

/^\s\{3\}\(\s\)\@!

The basic idea is to find 3 starting space:

^\s\{3\}

Not followed by space:

\(\s\)\@!
If you want to ask me a question or leave me a message add @bougui505 in your comment.