I want to parser resume in which is in .docx or doc format. Can any one suggest better way in UiPath. As of now i am using community edition. Mainly i need to extract person name from documentation.
thanks but any other suggestions
- Regex to find patterns that match names.
This can be tricky, as names don’t follow a strict pattern, but you might look for patterns based on the document’s structure. For example, names often appear at the top and might be preceded by titles like “Name:”, “Candidate Name:”, etc.
A simple Regex might look for these patterns, but its accuracy will depend on the consistency of the resume formats you’re dealing with.
System.Text.RegularExpressions.Regex.Match(yourStringVariable, "Name:\s*(.*)").Groups(1).Value
(?<=Name:\s*)[A-Za-z\s]+
(?<=Full Name:\s*)[A-Za-z\s]+
(?<=Candidate Name:\s*)[A-Za-z\s]+
- Document Understanding.
Use Machine learning models to understand and extract information from documents - Third-party Services.
Best way will be services with API interface.
1 Like
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.