I'm reworking some Fortran code. I need to remove the pattern (*,*) using vim's search and replace function. The following does not work
%s/\<(*,*)\>//gc
%s/\<(*\,*)\>//gc
%s/(*,*)//gc
the last one only removes the contents between the parentheses and not the parentheses themselves