Hello! I have searched for answers on the forums but couldn’t find any help for this issue.
I am building an application that helps users target their resumes to job openings by finding missing skills in their resume that appear in the job description.
To do this, I am taking a 2 step approach. The first step is to match the job description with a huge dataset of skills (approximately 28k records) and return the skills found in the job description. The second step is to look for those returned skills in the users resume and show the user the the skills that are missing from their resume. (There is a further step which reviews resume formatting and calculates a match score but it is beyond the scope of this question).
My thinking is to use the :extract with regex operator for step 1.
This screenshot shows the dynamic expression using :extract with regex
This screenshot shows the regex pattern which includes the skills dataset. I am pretty sure this is where I am getting it wrong, so any advice here would be appreciated.
And finally this is how the output is showing up. Notice all the commas and weird formatting:
Note 1: I have tried a much smaller regex expression of only 3 keywords also separated by | and the output was legible, but returned duplicates (i.e. it returned like 5 “finance” etc.) so help on eliminating this would also be very helpful.
Note 2: Dataset is not currently in database.
Thank you so much wonderful Bubble community!!!