In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED]
wrote:
> if I have these lines:
> ---
> AAA BBB CCC
> BBB CCC AAA
> CCC AAA BBB
> ---
>
> How to matching BBB at line 2 (BBB at the beginning of the line)
> but not matching line 1 and 3. ' /^BBB/ ' is not work.
use the m (for multiline) flag:
if I have these lines:
---
AAA BBB CCC
BBB CCC AAA
CCC AAA BBB
---
How to matching BBB at line 2 (BBB at the beginning of the line)
but not matching line 1 and 3. ' /^BBB/ ' is not work.
regards,
Bassang
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PRO