I have code like this:
<xsl:if test="$k='7' or $k = '8' or $k = '9'">
Is there any way to put this expression in a form, like, for instance SQL
k IN (7, 8, 9)
Ty 🙂
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
XSLT / XPath 1.0:
You can use other separators if needed.
In XSLT / XPath 2.0 you could do something like:
If you can use document structure to define your list, you could do: