Clean up text
Sort a list, remove duplicates, strip HTML, tidy whitespace. The small jobs that are annoying by hand.
0 characters
Result
0 characters
Questions
- Does sorting understand accents and other alphabets?
- Yes. It sorts the way your language does rather than by raw character code, so an accented letter files next to its plain form instead of at the end.
- Does removing duplicates keep the first or the last one?
- The first, and the original order of everything else is kept.