From xml file, how I can extract a content of attribute from a element, only if another attribute in the same element has specific value?

XML Example:
<Element1 value="parameter" name="samplecase" description="External" info="Number" >

How I can express using Xpath to extract "External" into bilingual file, only if value="parameter"?

I figure out "//Element1/[@value=’parameter′]" can set a condition and "//Element1/@description" describe which attribute should be translatable. How I can combine these two.

Parents Reply Children
No Data