http://qs321.pair.com?node_id=377090


in reply to Re^2: utf weirdness in regex
in thread utf weirdness in regex

But the period matches any character if it isn't escaped.
/[\w\s\.]+/ # one or more word, space or period characters /[\w\s.]+/ # one or more word. space or *any* characters /.+/ # same as above
"Even if you are on the right track, you'll get run over if you just sit there." - Will Rogers