正则表达式 - 匹配所有内容,而不是包括新行在内的字符序列

时间:2015-04-14 06:37:39

标签: regex

我看了How to match "anything up until this sequence of characters" in a regular expression?

但这不是我的情况 我需要把所有东西都放进去(code) and () 实施例

```code
this is i want to get
this is too
```

我试过这个正则表达式

```.+\s*(.+)\s*```

但它不适用于多行数据。我该怎么做才能让它发挥作用?

1 个答案:

答案 0 :(得分:2)

```[\s\S]*?```

你可以简单地使用它。或者你可以将你的正则表达式与sDOTALL标志一起使用