11

I see that some rss on xml have strange strings.

For example, ... is ….

What is this? And why? Its about CDATA?

On my web application (C#), reading rss, I usually do myString.Replace("…", "...") : not sure if it's the best strategy

markzzz
  • 47,390
  • 120
  • 299
  • 507

2 Answers2

14

These are numeric character references.

A numeric character reference (NCR) is a common markup construct used in SGML and other SGML-related markup languages such as HTML and XML. It consists of a short sequence of characters that, in turn, represent a single character from the Universal Character Set (UCS) of Unicode.

In this case, the numeric character reference for the ellipsis character - .

Oded
  • 489,969
  • 99
  • 883
  • 1,009
2

From this reference page it's horizontal ellipsis.

Bala R
  • 107,317
  • 23
  • 199
  • 210