monaLisa has asked for the wisdom of the Perl Monks concerning the following question:

This node falls below the community's minimum standard of quality and will not be displayed.

Replies are listed 'Best First'.
Re: Make a line generic
by snadra (Scribe) on Aug 11, 2003 at 11:26 UTC
    Hello,

    I am sorry, but what do you mean by 'text-line'?
    Please be a bit more specific.
    It does not really help to open one thread after the other, which all seem to seek for the same result (or not?). I think it would be better to just use one thread and try to explain your problem more detailed.
    If you want to use a regular expression you need to write =~ instead of =
    # to figure out if a line matches write: if ($endUnixLine =~ /^otsort.*/) { print 'matches'; }
    That would match a line, wich has 'otsort' in the beginning followed by zero or more characters.

    snadra