0

I'd like to match all the codes after the string _eb_: having 4 through 300 digits.

It should be very simple. I've created this Regex .*_eb_:(\w{4,300}) here and expect to be done. Testing using this ignored _eb_:firstToApperar should be ignored _eb_:secondToAppear should be ignored as well will bring me only the second match

What am I doing wrong?

JLCDev
  • 521
  • 1
  • 4
  • 15
  • 1
    `.*` matches any 0 or more chars other than line break chars **as many as possible**. Either use `.*?` or remove if you are not really interested in matching the text before `_eb_:` – Wiktor Stribiżew Jan 24 '21 at 20:34

0 Answers0