in reply to Match a string that can contain a carriage return in a random position.
according to my Camel (3rd edition), on page 150, you can use a /s modifier to allow '.' to also match newlines..
So try something like this?
/cn=(.+),ou=(.+),ou=(.+),c=(.+)/s
C.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Match a string that can contain a carriage return in a random position.
by CountZero (Bishop) on Dec 23, 2002 at 14:11 UTC | |
|
Re: Re: Match a string that can contain a carriage return in a random position.
by FamousLongAgo (Friar) on Dec 23, 2002 at 13:46 UTC |