-1

i know {min,max}, however,i can't understand {{.*?}}.

EpicPandaForce
  • 71,034
  • 25
  • 221
  • 371
Gxp
  • 25
  • 1
  • 5
  • 3
    put 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 Answers1

2

I think that:

  1. {{ matches literally
  2. . matches any except line term.
  3. *? Lazy Quantifier, matches as few characters as possible.
  4. }} matches literally
Community
  • 1
  • 1
Hitmands
  • 11,304
  • 26
  • 57