Data to extract Job and Skill

Need help to get this data, cant share full file due to data privacy.

If its a digital copy, means if you can copy easily data. Then use regex and extract it.

  1. First install PDF activities.
  2. Use Read PDF activity and store output in text.
  3. Regex for Job and Skill - Skill\sLevel.?Job.?Job\sCode\s+([\w-]+)\s+.?([a-zA-Z-\s]+)\s+.?[\d]+
  4. use assign and save it in variable..
  5. This regex group 1 will give Skill and group 2 will give Job

System.Text.RegularExpressions.Regex.Match(inputStr.ToString,in_Config(“Skill\sLevel.?Job.?Job\sCode\s+([\w-]+)\s+.?([a-zA-Z-\s]+)\s+.?[\d]+”).ToString).Groups(1).Value.Trim

Test this regex, it should work fine, you can test it regex101.com.

Let me if it works.

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.