I'm under the impression that the Dot '.' (wild card) character is dangerous to use. Is my fear unfounded? Thanks
|
|
|
|
|
|
|
The only tricky part I see for '.' is when matching multi-line string: with the wrong options, it can match much more than needed, and it can introduce bacjtracking issue (due to a non-greedy match). From regex tutorial The dot matches a single character, without caring what that character is. The only exception are newline characters. In most regex flavors, the dot will not match a newline character by default. So by default, the dot is short for the negated character class [^\n] (UNIX regex flavors) or [^\r\n] (Windows regex flavors). This exception exists mostly because of historic reasons. The first tools that used regular expressions were line-based. They would read a file line by line, and apply the regular expression separately to each line. The effect is that with these tools, the string could never contain newlines, so the dot could never match them. |
|||
|
|
|
|
Sodium is dangerous but it is required for life. Dot is like any other tool, only as dangerous as you make it. I would hate to try to write 99% of my regexes without it. |
||
|
|
|
|
It isn't dangerous, as long as you understand what it means. It generally will match any character of the input text. Depending on the flavor of regular expressions, it may or may not match end-of-line characters. |
||
|
|
|
|
I wouldn't say "dangerous", at least not in general. However:
|
||
|
|
|
|
It depends on the usage.
For reasons that other people stated, depending on what's between those brackets, this can cause a lot of backtracking and be really slow. |
||
|
|
|
|
Don't forget that you can often use |
||
|
|
|
|
The dot isn't inherently dangerous, but people do tend to rely on it too heavily. In fact, it occurred to me awhile back that a good way to improve your regex skills would be to stop using the dot--or at least, try to use it as little as possible. This will force you to think about how regex matching works, and to explore those other, more advanced features that you've never gotten around to learning. As with many other tools, it's easy to get stuck at a middling level of regex-fu and never really master them. This strikes me as a good way to drag yourself over that hump. Note that I'm not saying you should never use the dot again. just give it a rest for a few months while you find out what else regexes have to offer. |
||
|
|
|
|
VonC beated me to pointing out my article. The section "use the dot sparingly" answers your question. The problem isn't with the dot. The problem is with people using it in situations where it isn't appropriate. |
||||
|
