Text content : Introduction « Introduction « XML Tutorial

XML Tutorial
1. Introduction
2. Namespace
3. XML Schema
4. XPath
5. XSLT stylesheet
Java
XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
XML Tutorial » Introduction » Introduction 
1. 1. 2. Text content
<name> 
    <first>Bond</first>
    <middle>JK</middle>
    <last>James</last>
</name> 

Data from the beginning of a start-tag to the end of an end-tag is called an element. 

<first>is a start-tag

</first>is an end-tag 

<first>John</first>is an element 

The text between the start-tag and end-tag of an element is called the element content. 
If the content is just data, not other elements, the element content is referred to as parsed character data, or PCDATA.
PCDATA is also referred as with "text content" or "text node." 

You can include a space before the closing > of a tag

<name> 
    <first >Bond</first >
    <middle>JK</middle>
    <last>James</last>
</name> 

or 

<name> 
<first >Bond</first >
<middle>JK</middle>
<last>James</last>
</name> 

You cannot put a space after the opening < character in a tag, or the / character in an end-tag

Therefore, the following is not proper XML syntax: 

< first >Bond< /first > 

Neither is this

< first >Bond< / first >
1. 1. Introduction
1. 1. 1. Elements, Attributes, and Values
1. 1. 2. Text content
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.