문제

How to interpret the following xml element?

xs:pattern value="[ !-~]*"
도움이 되었습니까?

해결책

This is a regular expression pattern meaning that the element it applies to has to have in itself at least 0 characters of the following type: spaces and/or characters between ! and ~ (inclusive).

Thats all characters with ascii code with 32..126

Since space is just before ! u could also use [ -~]* instead

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top