My request seems incredibly simple, but I'm at a loss. I'd like to know how I can store all of the strings that a regexp matches into an array. For example, my specific task was to extract e-mail addresses from a given page (don't worry, it's not for spam). Although I was given a suggestion to split everything up and print if it had an @ character, that screamed inefficiency... I did, however, find in the perldocs something about @-, but that seemed way too complicated for something so basic.