I will try to keep the terminology clear here, the overloading of terms is making this complicated.
I have a transform that I am passing an attribute to fill a xsl:param, this is working
<xsl:param name="platform"/>
This will print out if I use
<xsl:value-of select='$platform'/>
Instead of printing this attribute/param I need to pass it to a function. I have tried
<xsl:value-of select="replace(current(),'replaceMe','$platform')"/>
I receive the error
Invalid replacement string in replace(): $ sign must be followed by digit 0-9
Is there a way I can pass the param into the function?
If so, how do I need to format it?