以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  去除某个单词用什么函数  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=124042)

--  作者:rjh4078
--  发布时间:2018/8/29 14:57:00
--  去除某个单词用什么函数
比如有句话“ok!I\'m going! ok!let\'s go!”
去除句首的“OK!”

--  作者:rjh4078
--  发布时间:2018/8/29 14:57:00
--  
这只是举个例子 OK是变量
--  作者:有点甜
--  发布时间:2018/8/29 15:02:00
--  

Dim str As String = "ok!I\'m going! ok!let\'s go!"
Dim s As String = "ok!"
If str.IndexOf(s) = 0 Then
    str = str.SubString(s.length)
End If
msgbox(str)