#️⃣ Add Line Numbers
Add line numbers to text with custom padding and separator.
Share:
🐦 Twitter
📘 Facebook
Similar Tools
🔤
Text Sorter
🔁
Remove Duplicate Lines
↕️
Reverse Lines
🔎
Find and Replace Text
📊
Word Frequency Counter
💎
Palindrome Checker
About This Tool
Add line numbers to text with custom padding and separator.
How to Use
Enter or paste your data in the input fields above
Results update instantly - all processing in your browser
100% free with no signup or account required
Tool Network
Toolfastpro
Smarttoolgo
Besttoolfun
Quickskillhub
function initTool() { document.getElementById('tool-app').innerHTML = '
序号宽度:
分隔符:
.
)
空格
添加行号
清空
'; } function doIt() { var lines = document.getElementById('inp').value.split(String.fromCharCode(10)); var pad = parseInt(document.getElementById('pad').value) || 0; var sep = document.getElementById('sep').value; document.getElementById('out').textContent = lines.map(function(l,i){return String(i+1).padStart(pad)+sep+l;}).join(String.fromCharCode(10)); } function clearAll() { document.getElementById('inp').value = ''; document.getElementById('out').textContent = ''; } window.addEventListener('DOMContentLoaded', initTool); n
✅ 链接已复制!打开微信粘贴即可发送