我有串HTML的圖像,例如:C#HTML字符串 - >獲取長度不HTML
string str = "There is some nice <img alt='img1' src='img/img1.png' /> images in this <img alt='img2' src='img/img2.png' /> string. I would like to ask you <img alt='img3' src='img/img3.png' /> how Can I can I get the Lenght of the string?";
我想獲得字符串的lenght沒有圖像和圖像的數量。所以,結果應該是:
int strLenght = 111;
int imagesCount= 3;
請問您能告訴我最有效的方法嗎?
感謝
你可以用正則表達式的幫助下做到這一點。 請讓我知道,如果你需要解決方案基於它 –
看看這個答案刪除HTML標記:http://stackoverflow.com/a/18154046/5119765然後,你將能夠得到字符串的長度。 –
你最好的選擇是使用像[Html Agility Pack](https://htmlagilitypack.codeplex.com/)這樣的html解析器,這樣你就可以正確地計算內容的字符長度和圖像標籤的數量。 – juharr