ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / applications / test / wordRe / testRegexps
blob07113853095ad70e180d16f48d04bcc4e7f13e33
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  2.0.0                                 |
5 |   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
9 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
11 // wordRe, string
13     ( "a.*" "abc" )
14     ( "a.*" "bac" )
15     ( "A.*" "abcd" )
16     ( "a.*" "ABCD" )
17     ( "a.*" "def" )
18     ( "d(.*)f" "def" )
19     ( "plain" "def" )
20     ( "plain" "def" )
21     ( "plain\\(0\\)" "def" )
22     ( "plain\(0\)" "ghi" )
23     ( "regex(0)" "ghi" )
24     ( "plain\\\(0\\\)" "ghi" )
25     ( "this"  "def" )
26     ( "this"  "this" )
27     ( plain\\(0\\) "def" )
28     ( plain\(0\) "ghi" )
29     ( plain\\\(0\\\) "ghi" )
30     ( "done"  "done" )
33 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //