Reverse the first two fields, exclude a range of characters

 
#
# reverse the 1st two fields
#
s/([^ ]*) *([^ ]*)/$2 $1/;