http://www.pdftron.com/pdfnet/mobile/Javadoc/index.html?pdftron/PDF/TextSearch.html
But when I look at the .NET documentation for TextSearch, there’s no RegularExpresson search mode:
http://www.pdftron.com/silverdox/documentation/html/921e4239-28bf-0352-f131-fcc39413f520.htm
You are correct that SilverDox does not directly support regular expressions, however you can implement this functionality on your end. You can use the TextSelector class to programmatically select an entire page at a time (this selection will not be visually represented on screen), which returns the text and the bounding boxes. You could then search the text using a regular expression library, and use its results with the results from the TextSelector class to select the appropriate characters.