aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/content/en/functions/strings/ToLower.md
blob: 3da047ae4b52289d321a1371af8c5a3b2c9645bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
---
title: strings.ToLower
description: Returns the given string, converting all characters to lowercase.
categories: []
keywords: []
action:
  aliases: [lower]
  related:
    - functions/strings/FirstUpper
    - functions/strings/Title
    - functions/strings/ToUpper
  returnType: string
  signatures: [strings.ToLower INPUT]
aliases: [/functions/lower]
---

```go-html-template
{{ lower "BatMan" }} → batman
```