I am using wso2esb-4.8.1.
I wish to change my request first letter to lowercase. I am getting request parameters like this:
<property name="Methodname" expression="//name/text()" scope="default" type="STRING"/>
In this way I am getting names like
GetDetails, CallQuerys, ChangeService...
Whereas I wish to change all the names to be like this:
getDetails, callQuerys, changeService...
If I wanted to upper or lower the case of the entire name, I could use XPath's fn:upper-case()
and fn:lower-case()
functions, but my requirement is different.
How can I change all the first letters only to lowercase?
Is it possible with XPath or XSLT?