On 4 January 2011 10:27, S Mathias <smathias1...@yahoo.com> wrote:
> cat asdf.txt
> bla-bla
> bla-bla
> bla[XYZ]
> importantthing
> another important thing
> [/XYZ]
> bla-bla
> bla-bla
> [XYZ]
> yet another thing
> hello!
> [/XYZ]
> bla-bla
> etc.
> $ SOMEPERLMAGIC asdf.txt > output.txt
> $ cat output.txt
> importantthing
> another important thing
> yet another thing
> hello!
>
>
> how can i sovle this question? what is SOMEPERLMAGIC? are there any perl 
> gurus, that have a little spare time?

It looks like you need something a bit like this.

  #!/usr/bin/perl

  use strict;
  use warnings;

  while (<>) {
    if (m|\[XYZ]| .. m|\[/XYZ]|) {
      next if m|\[/?XYZ]|;
      print;
    }
  }

But I can't be sure as you haven't actually explained what you question is.

For Perl questions, you might be better advised to try Stack Overflow
or your local Perl Mongers group.

Dave...

-- 
Dave Cross :: d...@dave.org.uk
http://dave.org.uk/
@davorg
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines

Reply via email to