A lot of desk work starts as a messy paste: rows from a ticket, logs from a terminal, a copied table, or a list of URLs from chat. The job is not "data processing." It is usually one small cleanup step.
The Writing tools hub keeps those steps separate so you can pick the least clever tool that solves the problem.
If the rows are messy, start with line tools
Blank rows make copied logs and lists hard to read. Start with Remove empty lines when the content is good but spacing is noisy.
If the rows repeat, use duplicate-line cleanup. If the rows are right but hard to compare, use sort or trim tools before you paste the result into a commit, support note, or spreadsheet.
If it looks like a table, keep the delimiter honest
CSV and TSV are both plain text, but they are not the same promise. Use CSV to TSV when a comma-separated table needs to paste cleanly into a tab-based place. Use TSV to CSV when a copied sheet needs comma-separated output.
If the next step is structured processing, jump to CSV to JSON instead. That turns rows into records, which is better for validation, filtering, and follow-up JSON tools.
If you need one kind of value, extract it directly
Logs and copied pages often contain one useful thing surrounded by noise. Use Extract URLs, Extract emails, Extract numbers, or Extract IPv6 addresses before writing a custom pattern.
A dedicated extractor is easier to review because the output is the point. You can see immediately whether it found the values you wanted.
Use regex and Markdown when the format is the task
Reach for Regex when the rule is really pattern-based: capture these IDs, match this optional prefix, or test a replacement before it goes into code.
Reach for Markdown preview when the question is how notes, README text, or a support answer will render after paste.
Count words when the limit matters
Use Word count and reading-time tools when you are writing for a product field, a short social post, or documentation that should stay brief.
A small cleanup routine
- Save the raw paste. Keep one copy before transforming anything.
- Fix rows first. Empty lines, duplicates, sorting, and trimming are easy to inspect.
- Convert delimiters second. CSV, TSV, or JSON depends on where the data goes next.
- Extract last. Pull URLs, emails, numbers, or IPv6 addresses once the noise is under control.
The best text cleanup tool is usually the boring one. If a single button expresses the job, use that before opening a spreadsheet or writing a pattern you will need to explain later.