Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- architecture
- web
- system
- instruction
- XML
- while
- github
- html
- MacOS
- DS
- Class
- data structure
- mysql
- php
- Java
- react
- for
- python
- MIPS
- control
- DoM
- function
- computer
- DATAPATH
- javascript
- CSS
- Linux
- Algorithm
- DB
- Pipelining
Archives
- Today
- Total
YYYEJI
[XML] XSD restriction의 whiteSpace 본문
728x90
XSD 제한(facets)
XSD에서 XML 요소나 속성을 선언할 때,
해당 요소나 속성이 가질 수 있는 값에 대한 범위를 제한할 수 있습니다
Simple type을 사용하시면 됩니다.
WhiteSpace 는
공백을 어떤 식으로 다룰지를 명시합니다.
① preserve - 어떠한 공백도 제거하지 않습니다.
② replace - 모든 종류의 공백(line feeds, carriage returns, tabs, spaces)을 띄어쓰기로 모두 대체
③ collapse : 모든 종류의 공백은 띄어쓰기로 모두 대체되고, 문자열 앞뒤의 여백도 제거,
많은 수의 띄어쓰기는 하나의 띄어쓰기로 변환
<xs:element name="car">
<xs:simpleType>
<xs:restriction base="string">
<xs:whiteSpace value="collapse"/>
<xs:enumeration value="Audi"/>
<xs:enumeration value="Golf"/>
<xs:enumeration value="BMW"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
◡̈
'HTML(or XML) & CSS & JavaScript' 카테고리의 다른 글
[JavaScript] DOM이란? (0) | 2022.10.10 |
---|---|
[XML] XSD restriction의 pattern (0) | 2022.10.09 |
[XML] XSD restriction의 enumeration (0) | 2022.10.09 |
[XML] XSD restriction의 minInclusive와 maxInclusive (0) | 2022.10.09 |
[XML] XSD의 default와 fixed (0) | 2022.10.09 |