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.
如何通过字符串中的 id 或类查找 html 元素?(正则表达式,C#)
<div class="item1">content</div> <div class="item2">content</div>
只得到
<div class="item1">
如果你只想拿 div -试试这个
<div (class|id)="myClassNameOrId".*?>
而不是myClassNameOrId输入您自己的类或 id 名称。如果您想获取其他元素 - 替换div为其他标签的名称。
myClassNameOrId
div