假设我有以下 HTML 字符串
<head>
</head>
<body>
<img src="stickman.gif" width="24" height="39" alt="Stickman">
<a href="http://www.w3schools.com">W3Schools</a>
</body>
我想在<head>
标签之间添加一个字符串。所以最终的 HTML 字符串变成
<head>
<base href="http://www.w3schools.com/images/">
</head>
<body>
<img src="stickman.gif" width="24" height="39" alt="Stickman">
<a href="http://www.w3schools.com">W3Schools</a>
</body>
所以我必须搜索第一次出现的<head>
字符串,然后插入<base href="http://www.w3schools.com/images/">
。
我如何在 C# 中做到这一点。