Quick Statistics
Paste any text containing numbers — extracts them all and outputs count, sum, min, max, mean, and median.
extract-numbers → statistics
Sort and Total
Extract numbers from text, sort them in ascending order, and show the total at the end.
extract-numbers → sort-numbers → sum
Clean Up Numbers
Strip messy formatting (commas, currency symbols), round to 2 decimal places, and re-format with proper thousand separators.
number-unformat → round → number-format
Generate Test Numbers
Generate a numbered sequence and shuffle it into random order. Great for test data or randomized lists.
sequence → shuffle-lines
Format Price List
Extract prices from messy text, round to 2 decimal places, format with thousand separators, and add a $ prefix.
extract-numbers → round → number-format → prefix-lines
Percentage Breakdown
Pull numbers from text and convert each to a percentage. Perfect for turning raw decimals into readable rates.
extract-numbers → to-percentage
Numbered Bullet List
Split comma-separated items into a clean numbered list. Trims whitespace from each item.
split-by-delimiter → trim → remove-blank-lines → number-lines
Increment Values
Extract all numbers from text, add 1 to each, and number the results.
extract-numbers → increment → number-lines
Binary Reference
Generate 0-15 with their binary equivalents in a numbered list. Quick reference for 4-bit values.
sequence → decimal-to-binary → number-lines
Hex Value Table
Generate 0-15 with their hexadecimal equivalents in a numbered list. Quick reference for hex digits.
sequence → decimal-to-hex → number-lines