If you can't/don't want to use any CPAN mod:
my @hits= $xml=~/<date\d+>(.+?)<\/date\d+>/
This should give you all the dates in the @hits
array.
If the XML isn't as simple as your example, using a XML parser is recommended, the XML::Parser
is one of them.