I have several strings from which I want to extract a substring. Here is an example:
/skukke/integration/build/IO/something
I would like to extract everything after the 3rd /
character. In this case, the output should be
/build/IO/something
I tried something like this
/\/\s*([^\\]*)\s*$/
The result of the match is
something
Which is not what I want. Can anyone help?