LEFT | RIGHT |
1 { | 1 { |
2 "version": 2, | 2 "version": 2, |
3 | 3 |
4 "expressions": [ | 4 "expressions": [ |
5 // Comma or semicolon instead of dot | 5 // Comma or semicolon instead of dot |
6 {"find": "[,;]", "replace": "."}, | 6 {"find": "[,;]", "replace": "."}, |
7 | 7 |
8 // Leading or trailing dots | 8 // Leading or trailing dots |
9 {"find": "^\\.+|\\.+$", "replace": ""}, | 9 {"find": "^\\.+|\\.+$", "replace": ""}, |
10 | 10 |
11 // Only two of the three w's | 11 // Only two of the three w's |
12 {"find": "^w{2,4}(\\.)([^\\.]+\\..*)$", "replace": "www.$2"}, | 12 {"find": "^w{2,4}(\\.)([^\\.]+\\..*)$", "replace": "www.$2"}, |
13 | 13 |
14 // Missing the dot | 14 // Missing the dot |
15 {"find": "([^\\.])(com|net|org|edu|mil|gov|aero|biz|coop|info|museum|name|pr
o|cat|jobs|mobi|travel)$", "replace": "$1.$2"} | 15 {"find": "([^\\.])(com|net|org|edu|mil|gov|aero|biz|coop|info|museum|name|pr
o|cat|jobs|mobi|travel)$", "replace": "$1.$2"} |
16 ], | 16 ], |
17 | 17 |
18 // Automatically generated dictionaries | 18 // Automatically generated dictionaries |
19 "domain":{} | 19 "domain":{},"domainReferrals":{},"scheme":{} |
20 } | 20 } |
LEFT | RIGHT |