Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何解释以下 xml 元素?
xs:pattern value="[ !-~]*"
这是一个正则表达式模式,这意味着它所应用的元素本身必须至少有 0 个以下类型的字符:空格和/或 ! 之间的字符 和〜(包括)。
这就是所有带有 32..126 的 ascii 代码的字符
因为空间就在之前!你也可以[ -~]*改用
[ -~]*