Extract vs Split PDF: Which One Do You Need?
How pulling a page range differs from splitting a PDF, when each fits, and how page ranges like 1-3, 7 are parsed into a clean new file.
Extracting a range versus splitting a file
Extracting pulls a chosen set of pages into one new PDF and leaves the rest behind. Splitting breaks a document into several separate PDFs, often one per page or one per fixed chunk. If you need a single file that contains only chapter two, extraction is the right job. If you need every chapter as its own file, splitting fits better. Both leave your original untouched, since each builds fresh files rather than editing in place.
How a page range is read
Ranges are 1-based and inclusive, so 1-3 means pages one, two and three. You can combine ranges and single pages with commas, as in 1-3, 7. Behind the scenes the range is converted to sorted, de-duplicated page positions before the new PDF is assembled. That is why the output always reads in document order no matter how you type the numbers, and why a repeated page appears only once.
Forgiving handling of messy input
Real page specs are often untidy, so the parser is deliberately lenient. A reversed range such as 7-3 is normalised to 3 through 7. Numbers larger than the document, like page 99 in a 20-page file, are clamped out and dropped rather than causing an error. Tokens that are not numbers or ranges are ignored, so a stray letter will not stop the extraction. This means you can paste a rough range and still get a sensible file.
Keeping quality and privacy intact
Because the tool copies whole pages with pdf-lib rather than printing them to images, the extracted PDF keeps selectable text, embedded fonts and crisp vector artwork. Nothing is recompressed, so a diagram stays as sharp as the original. The work runs entirely in the browser, which means sensitive contracts, medical records or financial statements never travel to a server. The finished file simply downloads to your device with an -extracted suffix.