I've come across a strange problem, in my old code
${fn:substring(value, 13)}
can work OK. But after we upgrade to Websphere7, it complains
Unable to parse el function ${fn:substring(value, 13)}
If we supply the third parameter, it works
${fn:substring(value, 13, 0)}
I checked the standard.jar the version is correct and I do find the tld
inside jar only serve the 3-parameters version of substring
. This leads me to think that is that some older version EL will auto supply the third parameter if not found? Any where I can find this info?