我正在尝试从 HTML 页面中获取字符串。该字符串位于没有 ID 的 div 标签内,并且具有不断变化的 title 属性。
它看起来像这样:
<div title = [this title changes depending on how the page is pulled up]>
EmailAddress abc@xyz
</div>
我希望能够从这整个混乱中抓住“ abc@xyz ”。
这个 HTML 文档是不断变化的,我唯一确定保持不变的是我要抓取的字符串总是以“ EmailAddress ”开头
我一直盯着这个 3 个小时没有进展。如果有人能指出我正确的方向,我将不胜感激。