I read HTML file and do some stuff. After reading the file, I have to write a C# code to replace src values for img tag only. Can someone suggest a piece of code replace src values? Please find a sample HTML code which I have.
<!DOCTYPE html>
<html>
<head>
</head>
<img alt="Mountain View" src="Tab1.png" style="width:304px;height:228px;">
<img src="Tab2.png" alt="Mountain View" style="width:304px;height:228px;">
<img alt="Mountain View" src="Tab3.png" style="width:304px;height:228px;">
<img src="Tab4.png" alt="Mountain View" style="width:304px;height:228px;">
<a href="https://www.w3schools.com">Visit W3Schools</a>
</body>
</html>