在.xsl中,取一个范围值,如“130-210”,并确定“86”是否为“130-210”。或“458”在该数字范围内
我正在解析一个 .xml 文件,如下所示:
<xml>
<normalRange>100-200</normalRange>
<value>83</value>
</xml>
在 .xls 样式表中,我需要显示一个值,指示该值是在正常范围内、低于它还是高于它。
在显示来自 CCR(医疗保健 HL7 消息传递中护理记录的连续性)xml 文档的人类可读结果时,这是一个非常常见的问题。
I'm parsing an .xml file like:
<xml>
<normalRange>100-200</normalRange>
<value>83</value>
</xml>
In an .xls stylesheet I need to display a value indicating whether the value is within the normalRange, below it, or above it.
This is a very common problem when displaying Human Readable results from the CCR (Continuity of Care Record in Healthcare HL7 messaging) xml document.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请注意,元素名称“xml”是 XML 1.0 标准 保留的,因此它是避免它可能是个好主意。
Note that element name "xml" is reserved by XML 1.0 standard, so it's probably good idea to avoid it.