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.