39 | | I would guess that this was not intentional and it was simply not considered that a filename that we might want to test would contain the `+` character. The problem would also occur for any filenames we might test that contain other special regex characters—like `*`, `[`, `]`, `{`, `}`, `(`, `)`—but I don't think we've encountered those. `.` is also a special regex character meaning "any character" although that has not led to any problems. |
| 39 | I would guess that this was not intentional and it was simply not considered that a filename that we might want to test would contain the `+` character. The problem would also occur for any filenames we might test that contain other special regex characters—like `*`, `^`, `$`, `[`, `]`, `{`, `}`, `(`, `)`—but I don't think we've encountered those. `.` is also a special regex character meaning "any character" although that has not led to any problems. |