RegExp re01 = pREP.make( "a(.*?)c" );
assertEquals( "abc", re01.match( "abcc" ) );
assertEquals( "b", re01.matchFirstSub( "abcc" ) );
RegExp re02 = pREP.make( "\\$a" );
assertEquals( "$a", re02.match( "$ab" ) );
RegExp re03 = pREP.make( "a.b.", new RegExp.ModeSet( RegExp.Mode.DotMatchesNewline ) );
assertEquals( "a\nb\n", re03.match( "ca\nb\n" ) );
RegExp re04 = pREP.make( "^[ \\t]*\\n(.*)", new RegExp.ModeSet( RegExp.Mode.DotMatchesNewline ) );