Function Replace$(a$,b$,c$) Local Integer z,d,e Local r$,x$ z=1:d=Len(c$):e=Len(b$):r$=a$ Do z=Instr(z,r$,b$) If z=0 Then Exit Do x$=Left$(r$,z-1) r$=x$+c$+Mid$(r$,z+e) z=Len(x$)+d Loop Replace$=r$ End FunctionN