GithubHelp home page GithubHelp logo

Capture Groups? about dhclass-hub HOT 4 CLOSED

brookestewart avatar brookestewart commented on June 26, 2024
Capture Groups?

from dhclass-hub.

Comments (4)

ebeshero avatar ebeshero commented on June 26, 2024

@brookestewart Sorry I didn't see this until now, though I'm surprised I'm awake! Yes, when I try your expression for the "Find" window here, I see your expression works to match on the lines you want, but right, the Replace tells you the "match is not possible." There's a reason for this. The capturing group ( )'s don't let you include the caret or dollar sign that signal the literal start and end of a line. Your match works for me without the ^ symbols since you are already pulling up a \n character. The \n character is allowed inside a capturing group. So if I run \</l\>(\n.*\n.*) in the Find window, I'm able to insert the capturing group in my Replace with \1. Hope that helps!

from dhclass-hub.

brookestewart avatar brookestewart commented on June 26, 2024

That helped, but it won't insert the first <l> when I replace it, I don't know why. Also, I'm having trouble capturing dates within brackets that continue over a line. Nothing I try seems to work.

from dhclass-hub.

ebeshero avatar ebeshero commented on June 26, 2024

Hmm. I wonder if your first <l> Is actually there but it's not sitting exactly where you expect? I am not in front of a computer right now, so I can't test this, but my hunch is that the positioning of \n in the replace is causing your tags to be spread out.

from dhclass-hub.

ebeshero avatar ebeshero commented on June 26, 2024

As for dates, remember how you matched on quotations that spanned over multiple lines in the Blithedale Regex (Regex Exercise 2)? Matching on square brackets and their internal content is similar, but you have to escape the square bracket, which has a special meaning in Regex!

I did the dates in a couple of passes, because some of them are stacked together like so:
[...][...] . Oh--I remember you need to insert a literal space (pressing the space bar) in the replace window if you want to replace ][ with a white space.

from dhclass-hub.

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.