可能重复:
How do I match any character across multiple lines in a regular expression?
我目前正在制作一个像Notepad ++一样的软件
我正在使用正则表达式来查找单词,并给它们一种颜色。然而;我一直在为多行评论着色。
示例:/* This is a multiline comment */
使用我当前的正则表达式:/\*.*?\*/
- 它正常工作,直到放置换行符。
所以匹配:/*This, for instance!*/
但不匹配:
/* This kind of comments
- Where multiple lines is placed...
*/
所以我想知道,而不是使用[dot]来查找评论中的单词,我可以使用其他一些匹配所有运算符吗?