in reply to regex not working right
## matching operator $var =~ m{}; $var =~ m//; $var =~ //; ## matching against default variable, against $_ m{}; m//; //;
So when your program gets the string "^atlas\S+/ || /\/world\s+/ || /\nowhere\s+" its not a very good regular expression, it has all these extra | and /
|
|---|