Global replace command help

Hello -
I am trying to use a global replace command but its not working.

Here is the cmd I am using in vi:

:%s/OLD/NEW/g

However, in my "NEW" I already have a "/" which is not making the replace work:

:%s/mytestscript.com:33232/mytestscript:70245/test.com/g

the "mytestscript:70245/test.com" is the parameter to replace "mytestscript.com:33232"

Any idea how to fix this?

Thank you

%s/mytestscrip.com:33232/mytestscript:70245\/test.com/g

You could also use , or � (pipe) as the sed seperator.