我看了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*```
但它不适用于多行数据。我该怎么做才能让它发挥作用?
答案 0 :(得分:2)
```[\s\S]*?```
你可以简单地使用它。或者你可以将你的正则表达式与s
或DOTALL
标志一起使用