Things happen for me, not to me.
#!/usr/bin/perl use strict; use warnings; while (<>) { s/^ +/' ' x length($&)/oe if /^ +/o; print; }