GithubHelp home page GithubHelp logo

"Between" function about stringy HOT 7 CLOSED

danielstjules avatar danielstjules commented on May 29, 2024
"Between" function

from stringy.

Comments (7)

danielstjules avatar danielstjules commented on May 29, 2024

Might be a good addition, but I wouldn't want people thinking they could parse HTML with that function (as shown in those examples):

S('<a href="#foo" class="example">bar</a>').between('<a>', '</a>').s
// => " href="#foo" class="example">bar"

Could you post an example use-case?

from stringy.

darkoromanov avatar darkoromanov commented on May 29, 2024

Well, sure. I wouldn't do that, I need it to avoid the regex complexity when I need to find the text (if any) between "(" and ")" inside a strings like "Lorem (maybe) ipsum".

from stringy.

danielstjules avatar danielstjules commented on May 29, 2024
S('Lorem (maybe) (hmm) ipsum').between('(', ')').s
// => "maybe"
'Lorem (maybe) (hmm) ipsum'.match(/\(([^\)]*)\)/);
// => ["(maybe)", "maybe"]

Alright, I see your point there. :)

from stringy.

vpassapera avatar vpassapera commented on May 29, 2024

I already did something like this in my fork @danielstjules if you want to take a look at it (or perhaps you can come up with a better implementation since mine is a bit hackish)

https://github.com/TheDevNetwork/PhpTypes#substrbetween (changed the method name since this one was better ๐Ÿ‘ )

from stringy.

danielstjules avatar danielstjules commented on May 29, 2024

@darkoromanov @vpassapera If either of you'd like to submit a PR, I'll merge this functionality. :) Otherwise I'll probably add it this weekend.

from stringy.

danielstjules avatar danielstjules commented on May 29, 2024

Done in 342ef7c in the 2.0.0 branch :) Thanks!

from stringy.

darkoromanov avatar darkoromanov commented on May 29, 2024

thanks!

from stringy.

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.