This regex will do it for your examples:
:s/\vcall ("[^"]+"|[^,]+)\s*,\s*("[^"]+"|[^,]+)/call \2, \1/
This regex will need to become progressively more nasty if you have escaped quotation marks and such things in one of your parameters.
In reality, I'd just highlight one parameter (in visual mode), hit d
, highlight the other parameter, and hit p
; Vim will nicely paste what's in the register, overwriting what you have highlighted, and swap the deleted text into the register. Then move the cursor and hit p
again. Highlight, d
, highlight, p
, move cursor, p
is a common combination, in my vimming at least.
So with the cursor at the start of the line, first example:
wva"dlvawpF,P
Meaning move past the word "call" (w
), highlight a quoted string (va"
), delete it (d
), move one space to the right (l
), highlight a word (vaw
), paste (p
), move backward to the comma (F,
), paste before it (P
).
Second example:
wva"dlva"p_f,P
This isn't hard once you get used to the movement commands.