-1

So i am trying to select all the numbers after a letter, in my case "v". I have thought about a positive lookback, but I can't figure out how I would be able to do it.

Is this possible, if yes, how?

The problem + my solution so far: enter image description here

(I am new to regex, so my question might be really stupid...)

joskyday
  • 3
  • 2
  • No worries we all once started. It's essential to mention tool/environemnt where you use the regex and what's your goal. If you want to *match* these digits put the `v` into a [lookbehind](https://www.regular-expressions.info/lookaround.html). For extraction you can simply use a [capturing group](https://www.regular-expressions.info/brackets.html) and put the digit part into it. How you access the captures in the result depends on the environment where you are using the regex. – bobble bubble Aug 21 '23 at 22:08
  • 1
    After some more trying and opening another 20 websites, I got it working with a look behind, thanks! – LolligeGerrit Aug 22 '23 at 09:19

0 Answers0