我正在尝试设置一个 schematron 测试来验证 XML 中的特殊字符...
更具体地说,我想在出现版权符号 (Unicode U+00A9) 的地方发出警告。
当对规则使用以下任何符号时,似乎无法解析 schematron xml 文件...
<iso:rule context="myelement>
<iso:report test="matches(., '\u00A9')">{ES1037} Copyright Symbol Detected</iso:report>
</iso:rule>
<iso:rule context="myelement>
<iso:report test="matches(., '\u{00A9}')">{ES1037} Copyright Symbol Detected</iso:report>
</iso:rule>
<iso:rule context="myelement>
<iso:report test="matches(., '\u{A9}')">{ES1037} Copyright Symbol Detected</iso:report>
</iso:rule>
<iso:rule context="myelement>
<iso:report test="matches(., '\x{00A9}')">{ES1037} Copyright Symbol Detected</iso:report>
</iso:rule>
那里有任何 schematron 专家知道如何将 unicode 字符嵌入到正则表达式中吗?
提前致谢...