有没有办法匹配“崇高文本”中的任何字符,包括换行符?我看到 Sublime 使用 Boost 的语法,但是如果没有特定的标志集,.字符就不会匹配换行符。
.
Try adding the (?s) inline flag start the start of the pattern. That will make . match any character.
(?s)