in reply to Re: pattern matching once
in thread pattern matching once
if ( $line =~ ?<FILENAME>.*\.htm? ) {
This should be:
if ( $line =~ m?<FILENAME>.*\.htm? ) {
Greetings,
-jo
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: pattern matching once
by jwkrahn (Abbot) on Aug 11, 2023 at 17:27 UTC | |
by haukex (Archbishop) on Aug 11, 2023 at 17:42 UTC | |
by jwkrahn (Abbot) on Aug 11, 2023 at 20:03 UTC | |
by haj (Vicar) on Aug 11, 2023 at 17:45 UTC | |
by choroba (Cardinal) on Aug 12, 2023 at 18:40 UTC |