0

我如何解决 VBA 中的以下问题

如果字符串包含“SeachText”,则替换整个字符串。

前任。

input:        "Test_1_The_Text_SeachString_Sth" 
input:        "Test_2_The_Text_SeachString_Sth" 
look for:     "SeachrString"
replace with  "New_Text"

所以在执行代码之后

"Test_1_Of_The_Text_SeachString_Sth"会变成"New_Text"

也:

"Test_2_Of_The_Text_SeachString_Sth"会变成"New_Text"

4

1 回答 1

2

像这样使用 Instr 函数:

  ip1= "Test_1_The_Text_SeachString_Sth" 
  lookfor="SeachString"

  If instr(ip1,lookfor)>0 then
     ip1= "newtext"
  End if
于 2013-10-08T11:18:13.263 回答