Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 461 Bytes

File metadata and controls

29 lines (22 loc) · 461 Bytes
layout api-command
language Python
permalink api/python/downcase/
command downcase
related_commands
upcase match split
upcase/
match/
split/

Command syntax

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

Description

Lowercases a string.

Example:

> r.expr("Sentence about LaTeX.").downcase().run(conn)
"sentence about latex."

Note: upcase and downcase only affect ASCII characters.