How to add a prefix (7HH) if the value doesn't start with '7HH'?
Source XML
<DATA>
<Name>90078</Name>
</DATA>
Expected output
<DATA>
<Name>7HH90078</Name>
</DATA>
How to add a prefix (7HH) if the value doesn't start with '7HH'?
Source XML
<DATA>
<Name>90078</Name>
</DATA>
Expected output
<DATA>
<Name>7HH90078</Name>
</DATA>
Well
plus
<xsl:mode on-no-match="shallow-copy"/>to handle the rest should suffice if you really use an XSLT 3 processor.