Regular Expression to get the SRC of images in C#

后端 未结 8 1524
情深已故
情深已故 2020-11-29 09:34

I\'m looking for a regular expression to isolate the src value of an img. (I know that this is not the best way to do this but this is what I have to do in this case)

8条回答
  •  甜味超标
    2020-11-29 09:38

    string matchString = Regex.Match(original_text, "", RegexOptions.IgnoreCase).Groups[1].Value;
    

提交回复
热议问题