Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. Need Library for resume parsing [modified]

Need Library for resume parsing [modified]

Scheduled Pinned Locked Moved C#
csharpcomjsoncareer
7 Posts 4 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    S Offline
    Sudhir Mangla
    wrote on last edited by
    #1

    I want to do Resume Parsing ,means reading a Word document file resume and after parsing , send some required informations like candidate Name,Email-ID,Phone No. , Experience etc.to the data base automatically. Can any one suggest Any free and commercial library for parsing resume. I need a Library using which I can get information like name, email, phone, Skill set, year of exp etc.

    Sudhir Mangla http://tips.DevelopersVoice.com (Technical Tips and Tricks) http://Programmerworld.net (Free books and source code) http://Faq.Programmerworld.net (FAQ and Tips for programmers)
    http://health.Programmerworld.net (Health tips)

    modified on Tuesday, January 13, 2009 6:14 AM

    L H B 3 Replies Last reply
    0
    • S Sudhir Mangla

      I want to do Resume Parsing ,means reading a Word document file resume and after parsing , send some required informations like candidate Name,Email-ID,Phone No. , Experience etc.to the data base automatically. Can any one suggest Any free and commercial library for parsing resume. I need a Library using which I can get information like name, email, phone, Skill set, year of exp etc.

      Sudhir Mangla http://tips.DevelopersVoice.com (Technical Tips and Tricks) http://Programmerworld.net (Free books and source code) http://Faq.Programmerworld.net (FAQ and Tips for programmers)
      http://health.Programmerworld.net (Health tips)

      modified on Tuesday, January 13, 2009 6:14 AM

      L Offline
      L Offline
      lawrenceinba
      wrote on last edited by
      #2

      for that u have to create a dictionary program separately.... in which your required key words should be present... using System.Text.RegularExpressions; u can do it

      the quieter u become more u hear

      S 1 Reply Last reply
      0
      • L lawrenceinba

        for that u have to create a dictionary program separately.... in which your required key words should be present... using System.Text.RegularExpressions; u can do it

        the quieter u become more u hear

        S Offline
        S Offline
        Sudhir Mangla
        wrote on last edited by
        #3

        even then finding name , Exp, Skill set is not easy task. Can u suggest some code sample for some library for the purpose.

        Sudhir Mangla http://tips.DevelopersVoice.com (Technical Tips and Tricks) http://Programmerworld.net (Free books and source code) http://Faq.Programmerworld.net (FAQ and Tips for programmers)
        http://health.Programmerworld.net (Health tips)

        L 1 Reply Last reply
        0
        • S Sudhir Mangla

          even then finding name , Exp, Skill set is not easy task. Can u suggest some code sample for some library for the purpose.

          Sudhir Mangla http://tips.DevelopersVoice.com (Technical Tips and Tricks) http://Programmerworld.net (Free books and source code) http://Faq.Programmerworld.net (FAQ and Tips for programmers)
          http://health.Programmerworld.net (Health tips)

          L Offline
          L Offline
          lawrenceinba
          wrote on last edited by
          #4

          Regex reg = New Regex("brown"); string str1 = "the quick brown fox jumped over the lazy dog"; Match matchSet; int matchPos; matchSet = reg.Match(str1) If (matchSet.Success) { matchPos = matchSet.Index; Console.WriteLine("found match at position:" + matchPos); } } } this code finds the word brown use ur creativity.... and develop rest of ur's

          the quieter u become more u hear

          1 Reply Last reply
          0
          • S Sudhir Mangla

            I want to do Resume Parsing ,means reading a Word document file resume and after parsing , send some required informations like candidate Name,Email-ID,Phone No. , Experience etc.to the data base automatically. Can any one suggest Any free and commercial library for parsing resume. I need a Library using which I can get information like name, email, phone, Skill set, year of exp etc.

            Sudhir Mangla http://tips.DevelopersVoice.com (Technical Tips and Tricks) http://Programmerworld.net (Free books and source code) http://Faq.Programmerworld.net (FAQ and Tips for programmers)
            http://health.Programmerworld.net (Health tips)

            modified on Tuesday, January 13, 2009 6:14 AM

            H Offline
            H Offline
            Henry Minute
            wrote on last edited by
            #5

            If you are not using a pro-forma resume, this is going to be mind numbingly complicated.

            Henry Minute If you open a can of worms, any viable solution *MUST* involve a larger can.

            1 Reply Last reply
            0
            • S Sudhir Mangla

              I want to do Resume Parsing ,means reading a Word document file resume and after parsing , send some required informations like candidate Name,Email-ID,Phone No. , Experience etc.to the data base automatically. Can any one suggest Any free and commercial library for parsing resume. I need a Library using which I can get information like name, email, phone, Skill set, year of exp etc.

              Sudhir Mangla http://tips.DevelopersVoice.com (Technical Tips and Tricks) http://Programmerworld.net (Free books and source code) http://Faq.Programmerworld.net (FAQ and Tips for programmers)
              http://health.Programmerworld.net (Health tips)

              modified on Tuesday, January 13, 2009 6:14 AM

              B Offline
              B Offline
              Ben Fair
              wrote on last edited by
              #6

              Check into a company named Burning Glass Technologies, www.burning-glass.com.

              Keep It Simple Stupid! (KISS)

              S 1 Reply Last reply
              0
              • B Ben Fair

                Check into a company named Burning Glass Technologies, www.burning-glass.com.

                Keep It Simple Stupid! (KISS)

                S Offline
                S Offline
                Sudhir Mangla
                wrote on last edited by
                #7

                Is there a Way or tool for converting resume form Word format to HR-XML format. Once resume is converted to HR-XML format it can be Processed.

                Sudhir Mangla http://tips.DevelopersVoice.com (Technical Tips and Tricks) http://Programmerworld.net (Free books and source code) http://Faq.Programmerworld.net (FAQ and Tips for programmers)
                http://health.Programmerworld.net (Health tips)

                1 Reply Last reply
                0
                Reply
                • Reply as topic
                Log in to reply
                • Oldest to Newest
                • Newest to Oldest
                • Most Votes


                • Login

                • Don't have an account? Register

                • Login or register to search.
                • First post
                  Last post
                0
                • Categories
                • Recent
                • Tags
                • Popular
                • World
                • Users
                • Groups