Only need partial info from a DIV block

all is in one block div.doctorinfo but I only need the following:
Fuctie, specialisatie, big-nummer and afdelingen
Is this posible

Url: E.B. (Boudewijn) Alting von Geusau

Sitemap:
{"_id":"noordwest","startUrl":["https://www.nwz.nl/Patiënt-en-Bezoeker/Specialisten-medewerkers"],"selectors":[{"id":"naam selector","parentSelectors":["_root"],"type":"SelectorLink","selector":".groupwrapper a:nth-of-type(n+2)","multiple":true,"linkType":"linkFromHref"},{"id":"Naam","parentSelectors":["naam selector"],"type":"SelectorText","selector":"h1","multiple":false,"regex":""},{"id":"AANDACHTSGEBIED","parentSelectors":["naam selector"],"type":"SelectorText","selector":"div.title:nth-of-type(5)+","multiple":false,"regex":""},{"id":"OPLEIDING","parentSelectors":["naam selector"],"type":"SelectorText","selector":".doctorinfo div:nth-of-type(6)","multiple":false,"regex":""},{"id":"BIG-NUMMER","parentSelectors":["naam selector"],"type":"SelectorText","selector":".doctorinfo div:nth-of-type(8)","multiple":false,"regex":""},{"id":"AFDELINGEN","parentSelectors":["naam selector"],"type":"SelectorText","selector":".doctorinfo a","multiple":false,"regex":""},{"id":"FUNCTIE","parentSelectors":["naam selector"],"type":"SelectorText","selector":"div.title:nth-of-type(1)+","multiple":false,"regex":""},{"id":"SPECIALISATIE","parentSelectors":["naam selector"],"type":"SelectorText","selector":"div.title:nth-of-type(3)+","multiple":false,"regex":""}]}

Hi,

You can use the contains() JQuery selector to find an exact match.

Here is a reference sitemap:

{"_id":"noordwest","startUrl":["https://www.nwz.nl/Pati%C3%ABnt-en-Bezoeker/Specialisten-medewerkers"],"selectors":[{"id":"naam selector","linkType":"linkFromHref","multiple":true,"parentSelectors":["_root"],"selector":".groupwrapper a:nth-of-type(n+2)","type":"SelectorLink"},{"id":"Naam","multiple":false,"parentSelectors":["naam selector"],"regex":"","selector":"h1","type":"SelectorText"},{"id":"AANDACHTSGEBIED","multiple":false,"parentSelectors":["naam selector"],"regex":"","selector":".title:contains(\"Aandachtsgebied\") +","type":"SelectorText"},{"id":"OPLEIDING","multiple":false,"parentSelectors":["naam selector"],"regex":"","selector":".title:contains(\"Opleiding\") +","type":"SelectorText"},{"id":"BIG-NUMMER","multiple":false,"parentSelectors":["naam selector"],"regex":"","selector":".title:contains(\"BIG-nummer\") +","type":"SelectorText"},{"id":"AFDELINGEN","multiple":false,"parentSelectors":["naam selector"],"regex":"","selector":".title:contains(\"Afdelingen\") +","type":"SelectorText"},{"id":"FUNCTIE","multiple":false,"parentSelectors":["naam selector"],"regex":"","selector":".title:contains(\"Functie\") +","type":"SelectorText"},{"id":"SPECIALISATIE","multiple":false,"parentSelectors":["naam selector"],"regex":"","selector":".title:contains(\"Specialisatie\") +","type":"SelectorText"}]}

Thanks JanAp it worked!