第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

如何從c#中的img html標(biāo)簽獲取圖像源屬性值?

如何從c#中的img html標(biāo)簽獲取圖像源屬性值?

C#
holdtom 2023-07-09 10:19:43
我的字符串變量存儲(chǔ) HTML 標(biāo)簽集以及 img 源文件鏈接。string str = "<div> <img src="https://i.testimg.com/images/g/test/s-l400.jpg" style="width: 100%;"> <div>Test</div> </div>"如何從字符串str中獲取src屬性值。顯然,我必須將 src 的值分配給另一個(gè)變量。如何從c#中的img html標(biāo)簽獲取src屬性值?
查看完整描述

2 回答

?
隔江千里

TA貢獻(xiàn)1906條經(jīng)驗(yàn) 獲得超10個(gè)贊

以下代碼將提取屬性的值src。


string str = "<div> <img src=\"https://i.testimg.com/images/g/test/s-l400.jpg\" style=\"width: 100%;\"> <div>Test</div> </div>";


// Get the index of where the value of src starts.

int start = str.IndexOf("<img src=\"") + 10;


// Get the substring that starts at start, and goes up to first \".

string src = str.Substring(start, str.IndexOf("\"", start) - start);


查看完整回答
反對(duì) 回復(fù) 2023-07-09
?
繁星點(diǎn)點(diǎn)滴滴

TA貢獻(xiàn)1803條經(jīng)驗(yàn) 獲得超3個(gè)贊

您可以使用正則表達(dá)式

Regex("<img\\s+src\\s*=\\s*\"(.*?)\"", RegexOptions.Multiline);

在結(jié)果中:
第一組(索引 0) - 完全匹配
第二組(索引 1) - 組 1 - (.*?) - 鏈接你想要的內(nèi)容

在線測(cè)試正則表達(dá)式你可以在這里

using System;

using System.Text.RegularExpressions;


public class Program

{

    public static void Main()

    {

        string src = "";

        Regex Pattern = new Regex("<img\\s+src\\s*=\\s*\"(.*?)\"", RegexOptions.Multiline);

        string str = "<div> <img src=\"https://i.testimg.com/images/g/test/s-l400.jpg\" style=\"width: 100%;\"> <div>Test</div> </div>";

        var res = Pattern.Match(str);

        if (res.Success)

        {

            src = res.Groups[1].Value;          

        }

        Console.WriteLine(src);

    }

}


查看完整回答
反對(duì) 回復(fù) 2023-07-09
  • 2 回答
  • 0 關(guān)注
  • 199 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)