如何从XSL中的属性获取ID部分

时间:2013-06-06 12:39:36

标签: xml xslt-1.0

问题是如何从ID中获取部件:

id="sometext_foldername-somesection-of-somepart"

我需要从此ID获取foldername。我怎么才能得到它?抱歉我的英文。

非常感谢!

1 个答案:

答案 0 :(得分:0)

解决。答案是

substring-before(substring-after(@id,'_'),'-somesection-')

谢谢!