I want to remove HTML comments from my page, below is the format of comment
<!-- saved from url=(0116)file://D:\Documents and Settings\213039755\Local Settings\Temporary Internet Files\OLK5\abc.htm -->
I want regex for HTML comments which contains "Saved" word.
Currently I am using
Regex.Replace(content, "(?<=\\<!--\\s*save\\s*-->)", "sss");