| HTML Tutorials |
|
|
| XML Tutorials |
|
|
| Browser Scripting |
|
|
| Server Scripting |
|
|
| .NET (dotnet) |
|
|
| Multimedia |
|
|
| Web Building |
|
|
| Java Tutorials |
|
|
| Programming Langauges |
|
|
| Soft Skills |
|
|
| Database Tutorials |
|
|
| Operating System |
|
|
| Software Testing |
|
|
| SAP Module |
|
|
| Networking Programming |
|
|
| Microsoft Office |
|
|
| Accounting |
|
|
|
|
String data types werden f�r Werte benutzt, das Zeichenfolge enth�lt.
|
|
String Data Type
|
|
Die Zeichenkettedatenart kann Buchstaben, Wagenr�ckkehr, Zeilenvorsch�be und Tabulatorzeichen enthalten.
Das folgende ist ein Beispiel der Erkl�rungen einer Zeichenkette in einem Schema:
|
|
<xs:element name="customer" type="xs:string"/>
|
|
|
An element in your documents might look like this:
|
|
<customer>John Smith</customer>
|
|
|
Or it might look like as follows:
|
|
<customer>John Smith</customer>
|
|
|
Anmerkung: Der XML Prozessor �ndert nicht den Wert, wenn du die Zeichenkettedatenarten benutzt.
|
|
NormalizedString Data Type
|
|
Die normalizedString Datenart wird von der Zeichenkettedatenart auch abgeleitet.
Die normalizedString Datenart enthalten auch Buchstaben, aber der XML Prozessor entfernt Zeilenvorsch�be, Wagenr�ckkehr und Tabulatorzeichen.
Das folgende ist ein Beispiel einer normalizedString Erkl�rung in Schemata:
|
<xs:element name="customer" type="xs:normalizedString"/>
|
|
|
An element in your documents might look like this:
|
|
<customer>John Smith</customer>
|
|
|
Or it might look like this:
|
|
<customer>John Smith</customer>
|
|
|
Note: In the example above the XML processor will replace the tabs with space.
|
|
Token Data Type
|
|
Die Scheindatenart wird von der Zeichenkettedatenart abgeleitet.
Die Scheindatenart enth�lt auch Buchstaben, aber der XML Prozessor entfernt Zeilenvorsch�be, Wagenr�ckkehr, Vorspr�nge, F�hren und abschlie�ende Zwischenraumzeichen und mehrfache R�ume.
Das folgende ist ein Beispiel von Scheinerkl�rungen in einem Schema:
|
|
<xs:element name="customer" type="xs:token"/>
|
|
|
An element in your document might look as follows:
|
|
<customer>John Smith</customer>
|
|
|
Or it might look as follows:
|
|
<customer>John Smith</customer>
|
|
|
Note: In the example above the XML processor will remove the tab.
|
|
String Data Types
|
|
Merken, da� alle Datenarten folgend von der Zeichenkettedatenart ableiten (au�er der Zeichenkette selbst)!
|
| Name |
Description |
| ENTITIES |
|
| ENTITY |
|
| ID |
A string that represents the ID
attribute in XML (only used with schema attributes) |
| IDREF |
A string that represents the IDREF
attribute in XML (only used with schema attributes) |
| IDREFS |
|
| language |
A string that contains a valid language
id |
| Name |
A string that contains a valid XML name |
| NCName |
|
| NMTOKEN |
A string that represents the NMTOKEN
attribute in XML (only used with schema attributes) |
| NMTOKENS |
|
| normalizedString |
A string that does not contain line
feeds, carriage returns, or tabs |
| QName |
|
| string |
A string |
| token |
A string that does not contain line
feeds, carriage returns, tabs, leading or trailing
spaces, or multiple spaces |
|
Keywords:
XSD string datatype,xsd data types,xsd data type,sql server datatype,vb net xsd,xsd tutorial,xsd xml,xsd examples,xsd dtd,sample xsd,xsd format,xsd example
|
|
| HTML Quizes |
|
|
| XML Quizes |
|
|
| Browser Scripting Quizes |
|
|
| Server Scripting Quizes |
|
|
| .NET (dotnet) Quizes |
|
|
| Multimedia Quizes |
|
|
| Web Building Quizes |
|
|
| Java Quizes |
|
|
| Programming Langauges Quizes |
|
|
| Soft Skills Quizes |
|
|
| Database Quizes |
|
|
| Operating System Quizes |
|
|
| Software Testing Quizes |
|
|
| SAP Module Quizes |
|
|
| Networking Programming Quizes |
|
|
| Microsoft Office Quizes |
|
|
| Accounting Quizes |
|
|
|