I want match spaces at the beginning of lines in Vim
PseudoCode of what I want to do
^( )*
I know the following from manual
notation meaning equivalent decimal value(s)
-----------------------------------------------------------------------
<Space> space 32 *space*
I am not sure how to use the decimal value 32.
How can you match one or more whitespaces in Vim?