XML Tutorial/Introduction/PCDATA — различия между версиями

Материал из Web эксперт
Перейти к: навигация, поиск
 
м (1 версия)
 
(нет различий)

Текущая версия на 08:26, 26 мая 2010

Whitespace in PCDATA

Whitespace includes the space character, new lines, and tabs. 
Whitespace is used to separate words to make text more readable. 
In XML, no whitespace stripping takes place for PCDATA. 
<Tag>This is a paragraph. 
this is a test.</Tag> 
the PCDATA is 
This is a paragraph. 
this is a test. 

XML parsers change all new lines to a single linefeed character before processing.