Git Product home page Git Product logo

Comments (3)

kkos avatar kkos commented on May 30, 2024

I can't image the "regex is matched in a "greedy" way" or ONIG_OPTION_GREEDY.
Is it different from a regex which does not include any non-greedy operators.

from oniguruma.

yurivict avatar yurivict commented on May 30, 2024

For example, in the string "2 km 1 km/h 5 km/h" onig_search with regex "[0-9]+[[:space:]](km|km/h)" with ONIG_OPTION_NONE finds three matches: "2 km", "1 km" and "5 km", but with ONIG_OPTION_FIND_LONGEST the matches become greedy: "1 km/h" and "5 km/h".

It both makes group matches greedy, and only keeps the longest matches. This isn't logical that greediness of the group operator also changes, because some people might need to only get the longest matches, and some people might only need the greedy group operator, and this option does both at the same time.

from oniguruma.

kkos avatar kkos commented on May 30, 2024

It is too difficult to select the longest element in alternatives at runtime.
And as you know, alternative operator has priorities from the left to the right.
I think that'll be enough for many cases.

from oniguruma.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.