Issue with my regular expression?
- by Rubans
I'm trying to locate the number matches in a relative path for directory up references("..\").
So I have the following pattern : "(..\)" which works as expected for the path "....\a\b" where it will give me 2 successfull groups ("..\") but when I try the path "..\a\b" it will also return 2 when it should be 1. I tried this in a reg ex tool such…