docs/api/java/string-manipulation/downcase.md at master · rethinkdb/docs

Skip to content

Navigation Menu

Sign in

Appearance settings

Latest commit

File metadata and controls

34 lines (25 loc) · 479 Bytes

layout api-command
language Java
permalink api/java/downcase/
command downcase
related_commands
upcase match split

upcase/

match/

split/

Command syntax

{% apibody %} string.downcase() → string {% endapibody %}

Description

Lowercase a string.

Example:

r.expr("Sentence about LaTeX.").downcase().run(conn);

Result:

Note: upcase and downcase only affect ASCII characters.