Regex for MS Word for detecting subtitle
问题 I have a MS Word Documents with its subtitle all in font-size 18px and bold. I want to find them all and replace them with something else. There I use Ctrl+H, enabling wldcards, chossing the font style (fontsize and bold), and use the regex (*{1,}) . However, this regex would find occurrences for every single character. How can I make every whole subtitle as a single occurence? Thanks 回答1: Use a Word wildcard Find/Replace, where: Find = ([!^13]@)^13 Replace = Before Text \1 After text^p and