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
Modifications needed in extracting phone numbers from resume text
Type
Big
Feature Request
["x"] Info
Bug
Documentation
Other (please specify):
Description
Tried to extract 10 digit phone number (including country codes) by given regex in extractor.py file but it's is not identifying any.
Expected Behavior
It should pick 10 digit phone number (with or without country codes ) text.
Possible Solution (if you have any in mind)
I modified the regex and replaced with existing.
Modified regex---> r'[+]?[(]?[0-9]{3}[)]?[-\s.]?[0-9]{3}[-\s.]?[0-9]{4,6}'
I removed "^" and "$" characters from start and end of the regex.
Now it's working properly.
The text was updated successfully, but these errors were encountered:
Issue Title
Modifications needed in extracting phone numbers from resume text
Type
Description
Tried to extract 10 digit phone number (including country codes) by given regex in extractor.py file but it's is not identifying any.
Expected Behavior
It should pick 10 digit phone number (with or without country codes ) text.
Possible Solution (if you have any in mind)
I modified the regex and replaced with existing.
Modified regex---> r'[+]?[(]?[0-9]{3}[)]?[-\s.]?[0-9]{3}[-\s.]?[0-9]{4,6}'
I removed "^" and "$" characters from start and end of the regex.
Now it's working properly.
The text was updated successfully, but these errors were encountered: