regular expression to match everything until the last occurrence of /

39,032

Solution 1

You can match this:

.*\/

and replace with your text.

DEMO

Solution 2

What you want to do is match greedily, the longest possible match of the pattern, it is default usually, but match till the last instance of '/'.

That would be something like this:

 .*\/

Explanation:

. any character
* any and all characters after that (greedy)
\/ the slash escaped, this will stop at the **last** instance of '/'

You can see it in action here: http://regex101.com/r/pI4lR5

Solution 3

Option 1

  • Search: ^.*/
  • Replace: Empty string
  • Because the * quantifier is greedy, ^.*/ will match from the start of the line to the very last slash. So you can directly replace that with an empty string, and you are left with your desired text.

Option 2

  • Search: ^.*/(.*)
  • Replace: Group 1 (typically, the syntax would be $1 or \1, not sure about Ant)
  • Again, ^.*/ matches to the last slash. You then capture the end of the line to Group 1 with (.*), and replace the whole match with Group 1.
  • In my view, there's no reason to choose this option, but it's good to understand it.
Share:
39,032

Related videos on Youtube

user3762977
Author by

user3762977

Updated on January 24, 2020

Comments

  • user3762977
    user3762977 over 4 years

    Using a regular expression (replaceregexp in Ant) how can I match (and then replace) everything from the start of a line, up to and including the last occurrence of a slash?

    What I need is to start with any of these:

    ../../replace_this/keep_this

    ../replace_this/replace_this/Keep_this

    /../../replace_this/replace_this/Keep_this

    and turn them into this:

    what_I_addedKeep_this

    It seems like it should be simple but I'm not getting it. I've made regular expressions that will identify the last slash and match from there to the end of the line, but what I need is one that will match everything from the start of a line until the last slash, so I can replace it all.

    This is for an Ant build file that's reading a bunch of .txt files and transforming any links it finds in them. I just want to use replaceregexp, not variables or properties. If possible.

  • Markus
    Markus almost 10 years
    For option 2, this might be easier: [^\/]*$.
  • zx81
    zx81 almost 10 years
    @Markus You're right, that matches the end of the string nicely. :)
  • PeterX
    PeterX almost 6 years
    I need the opposite of this - match end from the last instance of a character - this is a solution: stackoverflow.com/a/8374980/845584
  • PeterX
    PeterX almost 6 years
    I need to match from the last slash - this is a solution: stackoverflow.com/a/8374980/845584