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.
- First install PDF activities.
- Use Read PDF activity and store output in text.
- Regex for Job and Skill - Skill\sLevel.?Job.?Job\sCode\s+([\w-]+)\s+.?([a-zA-Z-\s]+)\s+.?[\d]+
- use assign and save it in variable..
- 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.
