I have a dataset of resume and I want to extract data from each resume I will give an example as a sample to what I need
String test= "Worked in Innovision Information System Private Limited as Project Trainee-Content Writing from Date to Date.";
I want to extract the company name, role (designation), and Date (From-to)
I'm new to regex so please correct me if I'm wrong
the first thing I tried to extract each one of them separately
String regexStr5="Worked in:? \\w+" ;
String regexStr6 ="as:? ([a-zA-Z ]+)";
and for the date Date : (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) \d{1,2}, \d{4}
How can I put them all together in the same regex?!!
and print the company-Name +role+date