I have some lines 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 third character /. In this case, the output should be
/build/IO/something
I tried something like this
/\/\s*([^\\]*)\s*$/
Match result
something
This is not what I want. Can anyone help?
source
share