I am reading around more than million lines of million files.
But have tried to replace them using regular experssion for the certain strings .
My strings are ( "tiger", "lion", "monkey") and replacing them by string "animal";
I have achived using regex substitution
$line =~ s/tiger/animal/g;
$line =~ s/lion/animal/g;
$line =~ s/monkey/animal/g;
When processed, it takes a lot of time during execution.
Here I want to understand why this is slow and how can I solve this problem in faster way?
I can't use any external modules to resolve this issue.