I need a regular expression that matchs all whitespaces between block of characters. Block example:
500 dfdsfsd fdsfdsfdsf 9876dfsdfs df7687
I only know about /\s+/ , but it matches only the first whitespace block..
I want to get whitespace, ignore block of characters, get whitespace ... so on