Re: how to match pattern at initial line

2001-10-21 Thread _brian_d_foy
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:

how to match pattern at initial line

2001-10-21 Thread basssang
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