mirror of https://github.com/explosion/spaCy.git
* Add infix rule for double hyphens, re Issue #302
This commit is contained in:
parent
ad119c074f
commit
910a6c805f
|
@ -1,4 +1,5 @@
|
||||||
\.\.\.
|
\.\.\.
|
||||||
(?<=[a-z])\.(?=[A-Z])
|
(?<=[a-z])\.(?=[A-Z])
|
||||||
(?<=[a-zA-Z])-(?=[a-zA-z])
|
(?<=[a-zA-Z])-(?=[a-zA-z])
|
||||||
|
(?<=[a-zA-Z])--(?=[a-zA-z])
|
||||||
(?<=[0-9])-(?=[0-9])
|
(?<=[0-9])-(?=[0-9])
|
||||||
|
|
Loading…
Reference in New Issue