You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
A clear and concise description of what the bug is.
Error parsing the pattern .*\.\w\..* such as in the email:
alec.j.hoyland@gmail.com
To Reproduce
Steps to reproduce the behavior:
❯ uv run python
Python 3.12.8 (main, Feb 14 2025, 14:32:03) [GCC 11.4.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import pysbd
>>> pysbd.__version__
'0.3.4'
>>> seg = pysbd.Segmenter(language="en", clean=False)
>>> seg.segment("alec.j.hoyland@gmail.com")
['alec.j.', 'hoyland@gmail.com']
>>>
Expected behavior
A clear and concise description of what you expected to happen.
Expected output - list of expected sentences
["alec.j.hoyland@gmail.com"]
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
Describe the bug
A clear and concise description of what the bug is.
Error parsing the pattern
.*\.\w\..*
such as in the email:To Reproduce
Steps to reproduce the behavior:
Expected behavior
A clear and concise description of what you expected to happen.
Expected output - list of expected sentences
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: