---
title: toLowerCase – ฟังก์ชันแปลงเป็นตัวเล็ก
url: https://www.thepexcel.com/functions/n8n/string-functions/to-lower-case-n8n/
type: function-explainer
program: n8n
syntax: toLowerCase(text)
date: 2025-12-16
updated: 2025-12-17
scores:
  popularity: 8
  difficulty: 1
  usefulness: 8
---

# toLowerCase – ฟังก์ชันแปลงเป็นตัวเล็ก

> แปลงเป็นตัวเล็ก

## คำอธิบาย

toLowerCase แปลงข้อความทั้งหมดเป็นตัวเล็ก

## Syntax

```excel
toLowerCase(text)
```

## เคสการใช้งาน

### Scenario 1

General usage

_เหมาะกับ:_ general

## ตัวอย่าง

### 1. ตัวอย่างที่ 1

```excel
{{ toLowerCase('HELLO WORLD') }}
```

**ผลลัพธ์:** `hello world`

แปลงทั้งหมดเป็นตัวเล็ก

### 2. ตัวอย่างที่ 2

```excel
{{ toLowerCase($json.name) }}
```

**ผลลัพธ์:** `john doe`

แปลงชื่อ

### 3. ตัวอย่างที่ 3

```excel
{{ $json.emails.map(e => toLowerCase(e)) }}
```

**ผลลัพธ์:** `[john@..., jane@...]`

แปลงอีเมล

## หมายเหตุเพิ่มเติม

⚠️ ฟังก์ชัน to-lower-case() ใช้สำหรับจัดการข้อมูล

## คำถามที่พบบ่อย

**Q: ใช้ to-lower-case() เมื่อไหร่?**

ใช้ในการจัดการข้อมูลตามที่อธิบายไว้

## ฟังก์ชันที่เกี่ยวข้อง

- [map – แปลงแต่ละรายการในอาร์เรย์ (transform elements)](https://www.thepexcel.com/functions/n8n/array-functions/map-n8n/)

## แหล่งข้อมูลเพิ่มเติม

- [n8n Expressions: to-lower-case Function](https://docs.n8n.io/code/expressions/) _(documentation)_

---

_Source: [https://www.thepexcel.com/functions/n8n/string-functions/to-lower-case-n8n/](https://www.thepexcel.com/functions/n8n/string-functions/to-lower-case-n8n/)_
