https://whoishiring.io/search/36.0440/-90.8984/4?source=hn (just HN items)
If you post here, please use the below format to help me with parsing. If you won’t, no worries, I will do my best to get all the things right.
1) {company} | {job title} | {location} | {attrs: ONSITE, REMOTE, INTERNS, VISA, SALARY, company-url}
Google | Software Developer | SF | VISA https://google.com
DuckDuckGo | Software Developer | Paoli PA | REMOTE, VISA, SALARY:100k-120k
Facebook | Web-developer | Zurich | SALARY:120k CHF
Google | Site Reliability Engineer | London | SALARY:120k GBP, VISA, REMOTE
or 2) {company} | {job title} | {location}
Google | Site Reliability Engineer | Sydney
Facebook | Web-developer | Zurich
I’m using this regex to test the first line, you can test it here https://regex101.com/r/relwQD/3 \s*(?P[^|]+?)\s*\|\s*(?P[^|]+?)\s*\|\s*(?P[^|]+?)\s*(?:\|\s*(?P.+))?$
Check bellow for the SALARY regex. SALARY:(?P\d+(?:k|K)?)(?:\s*\-\s*(?P\d+(?:k|K)?)?)?(?:\s?(?P[A-Z]{3}))?
you can test it as well https://regex101.com/r/SRWkMz/2/Also there is a report button if I've mismatched something.