ENH: patchCloud: return pTraits<Type>::max for unfound points
[OpenFOAM-1.7.x.git] / applications / test / wordRe / testRegexps
blob60b165c5588758d69055444232027040fcf44cdc
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.7.1                                 |
5 |   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 // wordRe, string
10     ( "a.*" "abc" )
11     ( "a.*" "bac" )
12     ( "A.*" "abcd" )
13     ( "a.*" "ABCD" )
14     ( "a.*" "def" )
15     ( "d(.*)f" "def" )
16     ( "plain" "def" )
17     ( "plain" "def" )
18     ( "plain\\(0\\)" "def" )
19     ( "plain\(0\)" "ghi" )
20     ( "regex(0)" "ghi" )
21     ( "plain\\\(0\\\)" "ghi" )
22     ( "this"  "def" )
23     ( "this"  "this" )
24     ( plain\\(0\\) "def" )
25     ( plain\(0\) "ghi" )
26     ( plain\\\(0\\\) "ghi" )
27     ( "done"  "done" )
30 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //