In short whenever my xml element has the following
DC19DAKHN or
DC19D0000 , in xslt output I want to override that value with
MN019015J .
How do I do this in XSLT?
My XML Code
Code:
<ValueID>
<MyID>DC19DAKHN</MyID>
</ValueID>
My xslt output is
Code:
<myID>DC19D0000</myID>
I want this to look like this instead
Code:
<myID>MN019015J</myID>
Do I use If Choose?