in reply to Perl hash keys not considered unique
FYI, to avoid having to escape every / in your pattern, you can use the m operator that lets you use another special character as a delimiter for your regex (or a pair of characters if they are symmetric). $line =~ m<File \[/opt/app/data/pulsefba/process>
Or, since you are searching for a fixed string, index could work as well.
|
|---|