1

驴是<a href="#">也是</a>人类<br />你好你好你好<br />嘿嘿嘿

我要删除

“驴是<a href="#">也是</a>人类<br />”

--- > 本部分

但仅限于第一个 <br /> 标签,而不是第二个或第三个...

需要一个功能或任何东西

这是我使用 excel 的第一天。

4

2 回答 2

0

这里使用 VBA 是一个示例代码。我希望它有所帮助。

Sub sample()

    Dim str_Val As String
    Dim start As Long
    str_Val = "Donkeys are <a href=""#"">also</a> humans <br /> hello hello hello <br /> hey hey hey"
    start = InStr(1, str_Val, "<br />", vbTextCompare) + Len("<br />")
    MsgBox Right(str_Val, Len(str_Val) - start)
End Sub
于 2013-05-20T01:39:09.557 回答
0

假设此字符串在单元格 A1 中

如果要包含第一个 <br />

=MID(A1,FIND("<br />",A1,1),LEN(A1)-FIND("<br />",A1,1))

如果你不

=MID(A1,FIND("<br />",A1,1)+7,LEN(A1)-FIND("<br />",A1,1))
于 2013-05-20T00:52:00.363 回答