TextPad does not allow multiple selections. And you cannot easily color or bold those choices. And I don't think you can make keywords for the syntax file that uses wildcards or RegEx.
But let me offer 3 options: 1-Mark all lines, 2-use a word processor and macro program, 3-treat as an HTML document.
Note: Using underscore "_" in following examples to represent space character for display purposes.
========================
Option 1- Mark all lines
Go to beginning of document.
Open Find window.
Find using RegEX for "space, LETTER_A, LETTER_B, one_or_more_of_any alpha-numberic_characters.:
_AB[a-zA-Z0-9]+
Click on Mark All.
========================
Option 2 - Word processor and macro program
If you could make bold or color, you could do the following:
Make a macro to do the following:
Make a hot key to Select Word
Go to beginning of document.
Find using RegEX for "space, LETTER_A, LETTER_B, one_or_more_of_any alpha-numberic_characters.:
_AB[a-zA-Z0-9]+Close Find window and go to that word on the document.
Press left arrow, right arrow to start at beginning of word.
Press SelectWord hot key
Apply color/font as desired.
Repeat macro to end of file.
- - - - - - - - - -
Even if you could bold/color, you would have trouble saving with those enhancements.
I would probably use a tool like
Macro Scheduler to copy the text to a word processor document that allows formatting and then perform the same steps as noted above in the second option that uses another program with formatting.
========================
Option 3 - Treat as HTML document.

The best method might be to treat the document as HTML and add HTML code by doing a search and replace like this:
Search for:_(AB[a-zA-Z0-9]+)
Replace with: _<b>\1</b>
Now save it as an HTML document to retain
bold formatting.