Extract Bold Text only

I am wondering if there is a way to extract only the bolded text within a selected position:

The section in the middle can span 1, 2, or 3 lines. I need to exclude the non bolded content which has no specific pattern to filter from (regex wont work in this case).

any ideas?

You 'll have to find something else.
The Datamapper extract the characters found at a specific position but has no ideas what font-size, colour or weight is used.

After looking at the data I can parse the extraction (split by line break) and remove the last line (unneeded data). Thanks for the response.