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

Skip to content

Navigation Menu

Sign in

Appearance settings

Latest commit

File metadata and controls

34 lines (25 loc) · 476 Bytes

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

downcase/

match/

split/

Command syntax

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

Description

Uppercases a string.

Example:

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

Result:

Note: upcase and downcase only affect ASCII characters.