Add canvas-note.cc that probably shouldn't exist anyway :)
[ardour.git] / libs / glibmm2 / examples / regex / main.cc
1 /* Copyright (C) 2004 The glibmm Development Team
2  *
3  * This library is free software; you can redistribute it and/or
4  * modify it under the terms of the GNU Library General Public
5  * License as published by the Free Software Foundation; either
6  * version 2 of the License, or (at your option) any later version.
7  *
8  * This library is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * Library General Public License for more details.
12  *
13  * You should have received a copy of the GNU Library General Public
14  * License along with this library; if not, write to the Free
15  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
16  */
17
18 #include <glibmm.h>
19 #include <iostream>
20
21 Glib::ustring bool_text (bool val)
22 {
23         return val ? "true" : "false";
24 }
25
26 int main(int argc, char** argv)
27 {
28   Glib::init();
29   
30   /* Reusing one regex pattern: */ 
31   Glib::RefPtr<Glib::Regex> regex = Glib::Regex::create ("(a)?(b)");
32   std::cout << "Pattern=" << regex->get_pattern() 
33      << ", with string=abcd, result=" 
34      << bool_text( regex->match("abcd") )
35      << std::endl;
36   std::cout << "Pattern=" << regex->get_pattern()
37      << ", with string=1234, result=" 
38      << bool_text( regex->match("1234") )
39      << std::endl;
40   std::cout << std::endl;
41
42   /* Using the static function without a regex instance: */
43   std::cout << "Pattern=b* with string=abcd, result=" 
44     << bool_text( Glib::Regex::match_simple("b*", "abcd") )
45     << std::endl;
46
47   return 0;
48 }
49