string lower-case(string) This function can take a second parameter of the Locale to use for the String conversion.
string lower-case(string)
Locale
For example lower-case( /foo/bar ) lower-case( /foo/@name, $myLocale )
lower-case( /foo/bar )
lower-case( /foo/@name, $myLocale )
826827828829830831832
public Expression<String> trim(Trimspec trimspec, char trimCharacter, Expression<String> trimSource) { return new TrimFunction( this, trimspec, trimCharacter, trimSource ); } public Expression<String> lower(Expression<String> value) { return new LowerFunction( this, value ); }
761762763764765766767
return new TrimFunction( this, trimspec, trimCharacter, trimSource ); } @Override public Expression<String> lower(Expression<String> value) { return new LowerFunction( this, value ); }
769770771772773774775
279280281282283284285286287288289
"evaluate", new EvaluateFunction() ); registerFunction( null, // namespace URI "lower-case", new LowerFunction() ); registerFunction( null, // namespace URI "upper-case", new UpperFunction() );