resume parser help
-
Anybody got any ideas on how to parse a resume form a word documnet. Basically the asp.net form would required users to upload word document, the webserver would then use ms word to open and save as text or xml. I would like to figure out a way to parse out name, address, phone etc... I've tried saving it as a ms xml but have not had any success figuring out what's my next step. even if somebody had an example in javascript , c# or vb.net thanks
-
Anybody got any ideas on how to parse a resume form a word documnet. Basically the asp.net form would required users to upload word document, the webserver would then use ms word to open and save as text or xml. I would like to figure out a way to parse out name, address, phone etc... I've tried saving it as a ms xml but have not had any success figuring out what's my next step. even if somebody had an example in javascript , c# or vb.net thanks
Letting upload user their resume and then parse them would be difficult as each user might have different format of resume. The best way is to have all fields input by user rather than upload resume. User could easily copy and paste resume content in your input fields like name, address, phone or work history. Sanjay Sansanwal www.sansanwal.com
-
Letting upload user their resume and then parse them would be difficult as each user might have different format of resume. The best way is to have all fields input by user rather than upload resume. User could easily copy and paste resume content in your input fields like name, address, phone or work history. Sanjay Sansanwal www.sansanwal.com
I've seen it done on multiple websites so i know it's doable, i just don't know how.