本文整理汇总了C#中System.Text.RegularExpressions.Regex.HtmlDecode方法的典型用法代码示例。如果您正苦于以下问题:C# Regex.HtmlDecode方法的具体用法?C# Regex.HtmlDecode怎么用?C# Regex.HtmlDecode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Text.RegularExpressions.Regex
的用法示例。
在下文中一共展示了Regex.HtmlDecode方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GerarLogradouro
public Logradouro GerarLogradouro(string cepDesejado, string tipoCEP = "ALL", string semelhante = "N")
{
var postData = string.Format("relaxation={0}&tipoCEP={1}&semelhante={2}", cepDesejado, tipoCEP, semelhante);
var responseString = GetHtml(postData, _buscarLogradouroPeloCepLink);
var pattern = @"<table class=""tmptabela"">(.*?)</table>";
var regex = new Regex(pattern);
var match = regex.Match(responseString);
var rua = new Regex("<td width=\"150\">(.*?) </td>").Match(match.Groups[0].Value).Groups[0].Value;
string stripTagsPattern = @"<(.|\n)*?>";
rua = Regex.Replace(rua, stripTagsPattern, string.Empty).Replace(" ","");
var bairro = new Regex("<td width=\"90\">(.*?) </td>").Match(match.Groups[0].Value).Groups[0].Value;
bairro = Regex.Replace(bairro, stripTagsPattern, string.Empty).Replace(" ", "");
var cidade = new Regex("<td width=\"80\">(.*?)</td>").Match(match.Groups[0].Value).Groups[0].Value;
cidade = Regex.Replace(cidade, stripTagsPattern, string.Empty).Replace(" ", "");
var logradouro = new Logradouro();
logradouro.CEP = cepDesejado;
logradouro.Endereco = rua.HtmlDecode();
logradouro.BairroOuDistrito = bairro.HtmlDecode();
logradouro.Localidade = cidade.Split('/')[0].HtmlDecode();
logradouro.UF = cidade.Split('/')[1].HtmlDecode();
return logradouro;
}