I have a DecXpress report and the datasource shows a filed where the data is comming something like

PRODUCT - APPLE<BR/>ITEM NUMBER - 23454</BR>LOT NUMBER 3343 <BR/>

Now that is how it is showing in a cell, so i decided to decoded, but nothing is working, i tried HttpUtility.HtmlDecode and here i am trying WebUtility.HtmlDecode.

   private void xrTableCell9_BeforePrint(object sender, System.Drawing.Printing.PrintEventArgs e)
{
    XRTableCell cell = sender as XRTableCell;
    string _description = WebUtility.HtmlDecode(Convert.ToString(GetCurrentColumnValue("Description")));
    cell.Text = _description;

}

How can I decode the value of this column in the datasource?.

Thank you

link|improve this question

2  
the Description is not HTML encoded ( decoding means getting &lt; to < etc) – Adrian Iftode Feb 20 at 23:05
what do you advise to remove the <br/> and insert some breaks there for the report then?, would it just be to do some String.replacing ? – user710502 Feb 20 at 23:11
feedback

1 Answer

up vote 1 down vote accepted

If you need to show the description with the < /> also, you need to use HtmlEncode.


If you need to extract the text from that html

public static string ExtractTextFromHtml(this string text)
        {
            if (String.IsNullOrEmpty(text))
                return text;
            var sb = new StringBuilder();
            var doc = new HtmlDocument();
            doc.LoadHtml(text);
            foreach (HtmlNode node in doc.DocumentNode.SelectNodes("//text()"))
            {
                if (!String.IsNullOrWhiteSpace(node.InnerText))
                    sb.Append(HtmlEntity.DeEntitize(node.InnerText.Trim()) + " ");
            }
            return sb.ToString();
        }

And you need HtmlAgilityPack


To remove the br tags:

var str = Convert.ToString(GetCurrentColumnValue("Description"));
Regex.Replace(str,  @"</?\s?br\s?/?>", System.Environment.NewLine, RegexOptions.IgnoreCase);
link|improve this answer
1  
thank you for your help – user710502 Feb 20 at 23:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.