Clean CSV Data
Clean up messy CSV: trims whitespace, removes blank rows, and deduplicates entries.
trim → remove-blank-lines → remove-duplicate-lines
Clean Email List
Extract all email addresses from text, remove duplicates, and sort alphabetically.
extract-emails → remove-duplicate-lines → sort-all-lines
Clean URL List
Extract all URLs from text, remove duplicates, and sort alphabetically.
extract-urls → remove-duplicate-lines → sort-all-lines
Normalize Text
Clean up text with irregular spacing: trims lines, collapses multiple spaces, and strips trailing whitespace.
trim → normalize-whitespace → strip-trailing-whitespace
Remove Noise Lines
Strip blank lines and duplicate entries from a list. Produces a clean, compact result.
remove-blank-lines → remove-duplicate-lines
Sanitize User Input
Prepare user-submitted text for safe HTML display: trims, encodes special characters, and normalizes spacing.
trim → html-entity-encode → normalize-whitespace
Extract and Count Numbers
Pull all numbers from text and report the total count. Useful for quick data analysis on mixed content.
extract-numbers → count