RegEx in Sublime Text: Match any character, includ

2019-01-20 22:53发布

问题:

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.