xsltで次と同等のことを行うことは可能ですか?
.//TagA[./TagB/[@AttrA='AttrAValue'] = 'TagBValue']
これは、Visual Studio 2008内で失敗し、次のエラーが発生します。
error: Unexpected token '[' in the expression.
.//TagA[./TagB/ -->[<-- @AttrA='AttrAValue'] = 'TagBValue']
これは機能するはずですか?これはXSLTのMS実装の問題ですか、それともAttrAがAttrAValueに等しく、TagBinnerTextがTagBValueに等しいTagBノードを持つすべてのTagAノードを取得する方法がありますか。