Giter VIP home page Giter VIP logo

Comments (6)

dlclark avatar dlclark commented on June 1, 2024 1

No problem, I'll poke around to see how easy this is.

from regexp2.

dlclark avatar dlclark commented on June 1, 2024 1

Turns out, it was pretty easy. It's based on the .NET version of the Replace function, so the replacement function MatchEvaluator takes a full Match instead of just a string as input.

func (re *Regexp) ReplaceFunc(input string, evaluator MatchEvaluator, startAt, count int) (string, error)

from regexp2.

dlclark avatar dlclark commented on June 1, 2024

Is there a specific behavior you need?

In general the regexp2 engine uses []rune instead of []byte but those are much less common than just having a string, so I left those overloads out in a few places.

The existing replace function in regexp2 is:

func (re *Regexp) Replace(input, replacement string, startAt, count int) (string, error)

You can see from the example usage in replace_test.go that it most aligns with ReplaceAllString. That was the only replacer I needed so I stopped after implementing it.

If you need the literal version (without match expansion) or the function replacer let me know and I'll look into it.

from regexp2.

hachi8833 avatar hachi8833 commented on June 1, 2024

Thank you very much for answering my question!
I should've noticed that -1 for count works as normal bulk replace. I'd use current Replace function as that.

FYI: this is a quick update I created just now for my interest, removing startAt and count. Ignore this.
https://github.com/hachi8833/regexp2/tree/replaceallstring

from regexp2.

hachi8833 avatar hachi8833 commented on June 1, 2024

Hello again,

After that, I found that I need 'function replacer' version of Replace function, like ReplaceAllStringFunc.
I'd be very glad if you'd kindly implement that. How about this?

from regexp2.

hachi8833 avatar hachi8833 commented on June 1, 2024

Thank you very much for your kindness with explanations! I'll look into it.

from regexp2.

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.