我希望我的输出 XML 具有不同的值。我做了一张桌子。
可以说有很多学生..
输入 XML
<?xml version="1.0" encoding="UTF-8"?>
<Person>
<lookuptable>
<name first="Jen" ori="Jenny" />
<name first="Sam" ori="Sammy" />
</lookuptable>
<Student>
<Info Name="Jen" Age="20" Class="C" />
</Student>
<Student>
<Info Name="Sam" Age="21" Class="B" />
</Student>
</Person>
所需输出
<?xml version="1.0" encoding="UTF-8"?>
<Person>
<lookuptable>
<name first="Jen" ori="Jenny" />
<name first="Sam" ori="Sammy" />
</lookuptable>
<Student>
<Info Name="Jenny" Age="20" Class="C" />
</Student>
<Student>
<Info Name="Sammy" Age="21" Class="B" />
</Student>
</Person>
我怎样才能Jenny,Sammy
从查找表中获取等?意味着每个地方Jen
都应该Jenny
从表中使用。我不确定如何编写 XSL。