i know {min,max}
, however,i can't understand {{.*?}}
.
Asked
Active
Viewed 45 times
-1

EpicPandaForce
- 79,669
- 27
- 256
- 428

Gxp
- 25
- 1
- 6
-
3put your regex in regex editor like https://regex101.com/. It will explain every portion of it. – αNerd Nov 25 '16 at 06:48
-
Oh bother, again hit reopen instead of delete... Please close with http://stackoverflow.com/questions/22937618/reference-what-does-this-regex-mean – Wiktor Stribiżew Dec 02 '16 at 00:16
1 Answers
2
I think that:
{{
matches literally.
matches any except line term.*?
Lazy Quantifier, matches as few characters as possible.}}
matches literally