实际上,XML是作为Input XML属性的值传递的。请帮助使用XSLT 1.0来获取XML值
def Solve (arr):
maxx =N
s= []
ss=[]
for i in range(len(arr)):
if ((arr[i] == maxx) or (maxx in s) ):
ss.append(str(maxx) + " ")
maxx-=1
for k in sorted(s)[::-1]:
if(k == maxx):
ss.append(str(k)+" ")
maxx-=1
del s[s.index(k)]
ss.append("\n")
else:
s.append(arr[i])
ss.append("\n")
return ss
N = int(input())
arr = list(map(int, input().split()))
out_ = Solve(arr)
print("".join(out_))
我只需要获取 ProductDetails 属性的值。 即仅以下部分使用XSLT 1.0
enter code here
答案 0 :(得分:-1)
检查:-
<xsl:value-of select="@ProductDetails"/>