3-19-13 regex to replace multiple space characters with a tab

2014-08-29

azim58 - 3-19-13 regex to replace multiple space characters with a tab


First match all spaces accept for newlines.
^\S\r\n+
Then replace this with a tab
\t