XML Tutorial/Introduction/PCDATA

Материал из Web эксперт
Версия от 08:26, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

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.