$line =~ s/Monday¦Tuesday¦Wednesday¦Thursday¦Friday¦Saturday¦Sunday//g;
What I am trying to do, is to remove the weekdays, however I want to only remove those words if they appear at the beginning of a string i.e.
Monday November 1st
becomes
November 1st
The crew moved in on Monday
stays the same
How would I rewrite $line to accomplish what I want?
Sincere thanks.
Joe Belmaati
Copenhagen Denmark