Closed ianlotinsky closed 9 years ago
For example, the identifier pattern string for Mavericks should be 'Mac OS X (10([_|\.])9([0-9_\.]*))'
'Mac OS X (10([_|\.])9([0-9_\.]*))'
The . character is preceded by \ since . is a RegExp special character that matches any non-whitespace character.
.
\
Fixed. Thanks for your report.
For example, the identifier pattern string for Mavericks should be
'Mac OS X (10([_|\.])9([0-9_\.]*))'
The
.
character is preceded by\
since.
is a RegExp special character that matches any non-whitespace character.