CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4

Threaded View

  1. #1
    Join Date
    May 2013
    Posts
    2

    Lightbulb Regarding Resume Parser Tool

    My purpose is to compare two resumes...have a criteria that if xyz fields match it is a duplicate.

    As u may know resume styles differ.How do i understand that the name field is a name field,so i can store it somewhere and compare it with the same field in another resume.
    As of now i have used Inter-op method and i am getting all document content in a string from the string i am splitting all the \t ,\r and empty spaces i am getting in an array.From the array how to get my own standard XML format like below.I heard people are using Natural language processing for the resume parsing tool, Or kindly Suggest me method or algorithm for the resume parser. My platform in .Net Framework. Thanks in Advance.


    Code:
    <CANDIDATE_FULL_NAME>CandidateName here</CANDIDATE_FULL_NAME>
    <CANDIDATE_FIRST_NAME>CandidateFirstName here</CANDIDATE_FIRST_NAME>
    <CANDIDATE_LAST_NAME>CandidateLastName here</CANDIDATE_LAST_NAME>
    <PRIMARY_EMAIL_ID>name@gmail.com</PRIMARY_EMAIL_ID>
    <PHONE_BASIC>+919720018454155</PHONE_BASIC>
    <DOB>8/2/1987</DOB>
    <STREET1></STREET1>
    <STREET2></STREET2>
    <CITY></CITY>
    <REGION></REGION>
    <COUNTRY></COUNTRY>
    <PIN></PIN>
    Last edited by BioPhysEngr; May 5th, 2013 at 02:00 AM. Reason: convert pre tags to code tags

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured