79745520

Date: 2025-08-25 08:57:33
Score: 0.5
Natty:
Report link

This one will catch from and included START until and included END:

(?m)START[^$]{0,80}END

The option (?M) is for using ^ and $ for start and end of lines instead of start and end of string.

This one will catch from and not included START until and not included END:

(?m)(?<=START)[^$]{0,80}(?=END)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Wace