관리 메뉴

드럼치는 프로그래머

[XML] xml nbsp 처리 문제 본문

★─Programing/☆─WebProgram

[XML] xml nbsp 처리 문제

드럼치는한동이 2013. 3. 29. 16:14

xml 에서는  를 처리 하지 못한다.

구글링해본결과는

" " is an HTML entity. XML only knows three entities: "<" ">" "&"

Therefore all other characters that you need must be with their char code, as you have found with " ".


아래와 같이 처리 하면 해결된다.

<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE xsl:stylesheet [ <!ENTITY nbsp "&#160;"> ]>
<xsl:text disable-output-escaping="yes">&amp;&nbsp;</xsl:text>
<mall>
<test>&lt;하하하&gt;fjslf&amp;공백&nbsp;입니다.</test>
</mall>

 

Comments