string upper-case(string) This function can take a second parameter of the Locale to use for the String conversion.
string upper-case(string)
Locale
For example upper-case( /foo/bar ) upper-case( /foo/@name, $myLocale )
upper-case( /foo/bar )
upper-case( /foo/@name, $myLocale )
283284285286287288289290291292293
"lower-case", new LowerFunction() ); registerFunction( null, // namespace URI "upper-case", new UpperFunction() ); registerFunction( null, // namespace URI "ends-with", new EndsWithFunction() ); }
"lower-case", new LowerFunction() ); registerFunction( null, // namespace URI "upper-case", new UpperFunction() ); registerFunction( null, // namespace URI "ends-with", new EndsWithFunction() );