2020年8月31日 星期一

vb.net 解碼HTML所有編碼 [Decode HTML text]

1
2
3
4
5
6
7
    Private Function DecodeHTMLStyle(pstrText As String) As String
        Dim strText As String = pstrText
        strText = WebUtility.HtmlDecode(strText)
        strText = Uri.UnescapeDataString(strText)
        strText = Regex.Unescape(strText)
        Return strText
    End Function

沒有留言:

張貼留言