Search on my site is implemented using regular expression:
RegExp(name, 'i')
where "name" is value of input block. The problem is that dot matches any character and when I input dot, search gives wrong results. How should I change pattern of regular expression to exclude this issue?