我在 xml 和 xslt 中有一个查询
以下是输入 XML
<?xml version="1.0" encoding="UTF-8"?>
<Employer>
<Employees>
<EmployeesDetails>van ind 26%</EmployeesDetails>
</Employees>
<Employees>
<EmployeesDetails>van ind</EmployeesDetails>
</Employees>
以下是我的输出文件
<?xml version="1.0" encoding="UTF-8"?>
<Employer>
<Employees>
<Names>van</Names>
<Location>ind</Location>
<Weather>26</Weather>
</Employees>
<Employees>
<Names>van</Names>
<Location>ind</Location>
<Weather>100</Weather>
</Employees>
在 XSLT 中,我需要检查(XSL:IF)天气元素是否可用输入 XML(如果可用)(26%)我必须使用 XSLT 删除 %,然后输出将为 26。如果 XML 中没有元素(天气)它必须默认创建 100 个。
我们能否在 XSLT 中做到这一点是可能的。
任何人都可以在这里帮助我吗