Introduction
Named captures let you find parts of text and give each part a name. This makes it easy to get the exact piece you want without guessing positions.
You want to extract a date from a text and get the year, month, and day separately.
You need to find a person's name and phone number from a message and keep them labeled.
You want to check a log file and pull out error codes with their descriptions.
You are parsing a URL and want to get the protocol, domain, and path clearly.
You want to split a full name into first and last names from a string.