V.B
V.B

Reputation: 1211

How to use special characters in XML

I am writing a query in XML in my SSRS report. I can use "& lt;"(less than) without any problem but not able to use "& le;" CData also doesn't work in my query it gets completely ifnored (less than equal).Any suggestions?

Upvotes: 0

Views: 1428

Answers (2)

Michael Kay
Michael Kay

Reputation: 163262

What character(s) were you hoping that ≤ would refer to?

(Perhaps "<="? or perhaps "≤"?)

You can either define an entity that expands &le; to the required character(s), or you can enter the required characters in the file directly, in place of the entity reference.

Upvotes: 1

Mudassir Hasan
Mudassir Hasan

Reputation: 28741

Try using escaped sequence for less than equal to like below

&lt;=

Upvotes: 0

Related Questions