a$="abcdef" ? f(a$,"bcd") これが "aef" を表示すればいいのかな?? であれば def f(s,k) var t$=s, i=instr(s,k) if i>=0 then t$=subst$(s,i,"") return t$ end こんな感じ