Re: here doc/regex question

2012-09-27 Thread Matthias Leopold
Am 2012-09-27 13:16, schrieb Shlomi Fish: Hi Matthias, On Thu, 27 Sep 2012 12:50:56 +0200 Matthias Leopold wrote: hi, i'm using the example from man perlop for here docs with indentation i'm using vim syntax with "set list" and "set number lines" 1 ^I(my $quote =<<'^IFINIS') =~ s/^\s+//

Re: here doc/regex question

2012-09-27 Thread Shlomi Fish
Hi Matthias, On Thu, 27 Sep 2012 12:50:56 +0200 Matthias Leopold wrote: > hi, > > i'm using the example from man perlop for here docs with indentation > i'm using vim syntax with "set list" and "set number lines" > >1 ^I(my $quote = <<'^IFINIS') =~ s/^\s+//gm;$ >2 ^IThe Road goes ever

here doc/regex question

2012-09-27 Thread Matthias Leopold
hi, i'm using the example from man perlop for here docs with indentation i'm using vim syntax with "set list" and "set number lines" 1 ^I(my $quote = <<'^IFINIS') =~ s/^\s+//gm;$ 2 ^IThe Road goes ever on and on,$ 3 $ 4 ^I$ 5 ^Idown from the door where it began.$ 6 ^IFINIS$ why does