Сортировать список
Отсортируйте строки списка в алфавитном или числовом порядке с опциональной чувствительностью к регистру, обнаружением ведущих чисел и обратным порядком. Работает полностью в вашем браузере.
Ввод
Когда включено, сортировка чувствительна к регистру (например, 'a' перед 'A').
Когда включено, ведущие числа обнаруживаются и сортируются численно вместо алфавитной сортировки.
Вывод
Другие способы использовать этот инструмент
REST API
curl -X POST https://api.iotools.cloud/v1/tool/sort-list \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"originalList": "banana\nApple\ncherry",
"reverseOrder": "",
"caseSensitive": "",
"detectNumbers": ""
}'Подставьте свой собственный ключ из аккаунта. Поля инструмента — это тело запроса, без обёртки.
Спросите у ИИ-агента
Use the IOTools `sort-list` tool (Sort List) on this input:
YOUR_INPUT_HEREВставьте это любому агенту, подключённому к MCP-серверу IOTools, и добавьте свой ввод.
Виджет для встраивания
<iframe
src="https://iotools.cloud/embed/sort-list/"
width="100%" height="520" frameborder="0" scrolling="no" loading="lazy"
title="Сортировать список — iotools.cloud"
sandbox="allow-scripts allow-forms allow-same-origin allow-downloads allow-popups allow-popups-to-escape-sandbox"
allow="clipboard-write"
style="width:100%;border:1px solid #e5e7eb;border-radius:12px;overflow:hidden"></iframe>
<script src="https://iotools.cloud/embed.js" async></script>Вставьте это на свою страницу — бесплатно, без ключа, нужна лишь обратная ссылка.
| Стоимость вызова API/MCP | От 5 кредитов |
|---|---|
| Нужно больше кредитов? | Посмотреть тарифы |
Также доступно через
Руководства
Sort the lines of a list into alphabetical or numerical order. Paste anything line-separated — names, dates, file paths, survey answers — and get it back sorted, with control over case-sensitivity, numeric detection, and direction.
How to use it
- Paste your list, one item per line, into the input box.
- Toggle the settings below as needed.
- Copy or download the sorted result.
Settings
- Reverse Order — sort Z→A (or largest→smallest with number detection) instead of the default A→Z.
- Case-sensitive — when off (default), sorting ignores case, so
appleandApplesort next to each other. When on, uppercase letters sort before lowercase. - Detect numbers — when a line starts with digits, compare that leading number numerically instead of as text, so
2sorts before10(a plain alphabetical sort would put10first, since"1"<"2").
Privacy
Everything runs entirely in your browser. Your list is never uploaded to a server.