问题
Is there a way to match any character in Sublime Text, including newlines? I saw that Sublime uses Boost's syntax but that the .
character won't match newlines without a specific flag set.
回答1:
Try adding the (?s)
inline flag start the start of the pattern. That will make .
match any character.
来源:https://stackoverflow.com/questions/11992596/regex-in-sublime-text-match-any-character-including-newlines