Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试拆分这样的东西
当 Source 来自网页并多次包含此值时,但我认为不会因为“<”字符而将其拆分,有什么办法吗?
SourceSplit = Split(Source, "<span class='BText' id='BText'>")
我尝试使用 Chr(60) 代替,也不喜欢,有什么想法吗?
谢谢你的帮助
我猜 HTML 对属性值使用双引号,而不是单引号。您需要转义双引号:
SourceSplit = Split(Source, "<span class=""BText"" id=""BText"">")