Resume Matcher is an open source, free tool to improve your resume. It works by using language models to compare and rank resumes with job descriptions.
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.
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.