>
Hi all,
From what I understand, in regexps, "." means 'any char' and "\." means a
literal dot.
So, the following is a bug:
170> regexp:match("a", ".").
{match,1,1}
171> regexp:match("a", "\.").
{match,1,1} % shouldn't match!
- Willem