我正在尝试编写适当的结构标记集来解析UCUM的XML 版本。以下是unit标签的两个示例:
<unit Code="deg" CODE="DEG" isMetric="no" class="iso1000">
<name>degree</name>
<printSymbol>°</printSymbol>
<property>plane angle</property>
<value Unit="[pi].rad/360" UNIT="[PI].RAD/360" value="2">2</value>
</unit>
<unit Code="[degF]" CODE="[DEGF]" isMetric="no" isSpecial="yes" class="heat">
<name>degree Fahrenheit</name>
<printSymbol>°F</printSymbol>
<property>temperature</property>
<value Unit="degf(5 K/9)" UNIT="DEGF(5 K/9)">
<function name="degF" value="5" Unit="K/9"/>
</value>
</unit>
棘手的部分是value标签的内容,它可以是字符串(我用字符串属性表示)或函数(需要自己的结构)。这是我到目前为止所得到的:
type Unit struct {
Code string `xml:Code,attr`
CodeCaps string `xml:CODE,attr`
IsMetric bool `xml:isMetric,attr,omitempty`
IsSpecial bool `xml:isEmptySpecial,attr,omitempty`
Class string `xml:class,attr`
Name string `xml:name`
PrintSymbol string `xml:printSymbol,chardata`
DimensionTypeKey string `xml:property,chardata`
Value struct {
Unit string `xml:Unit,attr`
UnitCaps string `xml:UNIT,attr`
Value string `xml:Value,attr`
PrintValue string `xml:,chardata`
Function struct { ... }
} `xml:value`
}
如何使用结构标记准确描述此 XML?
繁星点点滴滴
相关分类