1. Workday Community Documentation
"Workday Studio Assembly Guide": The guide on XSLT transformations within Workday Studio details the use of standard XPath 1.0 functions for conditional logic. Section: "Using XPath in Workday Studio" explains that standard functions like contains() are used within test attributes for conditional processing in elements like .
2. W3C
"XSL Transformations (XSLT) Version 1.0"
November 16
1999: The official specification defines the structure for conditional processing.
Section 9.2
"Conditional Processing with xsl:choose": This section specifies that contains a sequence of elements followed by an optional element. The test attribute of contains an expression that is evaluated to a boolean.
3. W3C
"XML Path Language (XPath) Version 1.0"
November 16
1999: This specification defines the core library of functions available in XSLT.
Section 4.2
"String Functions": This section defines the boolean contains(string
string) function
stating it "returns true if the first argument string contains the second argument string
and otherwise returns false." This confirms the correct syntax and argument order used in option D.