← All tools
// Text

Text Line Tools online

Shuffle, reverse, join, rotate, prefix, and suffix text lines — runs in your browser

Chunky Munster mascot
by
CHUNKY
MUNSTER
// Output
Output will appear here...

Text line manipulation is a fundamental part of data processing. This tool provides a collection of the most common line-level text operations — shuffling lists, reversing order, joining lines, rotating lists, and adding HTML or CSV prefixes and suffixes to each line.

Available Operations

Frequently Asked Questions

How do I create an HTML list from plain text?

Paste your items one per line, select "Add prefix/suffix", set prefix to <li> and suffix to </li>, then click Run. The output will be ready to paste inside <ul> or <ol> tags.

Is the shuffle truly random?

The shuffle uses Math.random() via the Fisher-Yates algorithm, which provides uniform randomness. It is suitable for most purposes but is not cryptographically secure — don't use it for lottery draws or security-sensitive applications.