I will get a value from the XML file, e.g.
<WORD>Men</WORD>
Then, I want to create an array in XSLT 1.0, e.g.
<array>
<Item>Men</Item>
<Item>Women</Item>
</array>
If the value from the XML file matches one of the items in the array, it will return true. Can anyone tell me how can I do it?? Thank you!