Pads or truncates each line to a fixed width.
Pad / Truncate Lines processes text line by line, padding each line to a fixed width with a chosen character or truncating it to that width. You control the target width, the pad character, which side to pad (start or end), and whether to pad, truncate, or do both. It is handy for aligning columns, building fixed-width records, or trimming lines to a uniform length.
No. Everything runs entirely in your browser and nothing is uploaded. Your text never leaves your device.
Pad lengthens lines shorter than the width using the pad character, Truncate cuts lines longer than the width, and Both first truncates then pads so every line ends up exactly the target width.
Side controls where padding is added. Start pads on the left (right-aligning the text), and End pads on the right (left-aligning the text). It only affects padding, not truncation.
No. Only the first character of the Pad char field is used, and if the field is empty it defaults to a space.
Yes. The width is clamped between 0 and 1000. Non-numeric input is treated as 0, and the default width is 10.