I can’t figure this out looking at the documentation.
I want to match something that appears everywhere except the start of the string
"hello world hello hello" =~ m/^hello/
Would match the first hello
What I want it NOT^, so match the second and third hello but not the first
Is that possible?
This would do: