标签: regex xml relaxng-compact
我正在使用Relax NG compact,我想将一个属性与一个不等于“软件”一词的值匹配
例如,
<foo type="bar">好
<foo type="bar">
<foo type="foobar">好
<foo type="foobar">
<foo type="software">不好
<foo type="software">
尝试制作负前瞻图案时出现错误
attribute type { xsd:string { pattern = '^(?!.*software).*$' }}
知道我还有其他选择吗?
谢谢