Hello, firstly i need to know what are good available free libraries for regex in C++, specifically i am looking to have a filter on the XML document checking which of the elements contain any of the predetermined substrings ("Brauer", "Vogelheim", "Solaris"). So i am waiting for: "<meta:generator>StarOffice/8$Solaris_Sparc OpenOffice.org_project/680m5$Build-9114</meta:generator>", "<dc:creator>Michael Brauer</dc:creator>", and "<meta:printed-by>Daniel Vogelheim</meta:printed-by>" only from the following XML:
<style type="text/css">
@page { margin: 2cm }
P { margin-bottom: 0.21cm }
-->
</style>
</p><pre class="western"><?xml version="1.0" encoding="UTF-8"?></pre><pre class="western"><office:document-meta xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:ooo="http://openoffice.org/2004/office" office:version="1.0">
<office:meta>
<meta:generator>StarOffice/8$Solaris_Sparc OpenOffice.org_project/680m5$Build-9114
</meta:generator>
<dc:title>OASIS Open Office Specification</dc:title>
<meta:creation-date>2003-02-05T12:39:40</meta:creation-date>
<dc:creator>Michael Brauer</dc:creator>
<dc:date>2007-02-02T17:00:27</dc:date>
<meta:printed-by>Daniel Vogelheim</meta:printed-by>
<meta:print-date>2004-09-17T15:13:31</meta:print-date>
<meta:keyword>OASIS</meta:keyword>
<meta:keyword>open</meta:keyword>
<meta:keyword>Office</meta:keyword>
<dc:language>en-US</dc:language>
<meta:editing-cycles>1436</meta:editing-cycles>
<meta:editing-duration>P50DT18H24M11S</meta:editing-duration>
<meta:user-defined meta:name="VcsId">$Id$</meta:user-defined>
<meta:user-defined meta:name="Info 2"/>
<meta:user-defined meta:name="Info 3"/>
<meta:user-defined meta:name="Info 4"/>
<meta:document-statistic meta:table-count="35" meta:image-count="20" meta:object-count="0" meta:page-count="738" meta:paragraph-count="28413" meta:word-count="182194" meta:character-count="1228393"/>
</office:meta>
</office:document-meta>