I would like to split a series that has multiple values with file paths and jar file as a delimitator. How can split the values into different rows so that the '.jar' delimitator is not lost
Ex: 1 /opt/abc/defg/first.jar/opt/dce/efg/second.jar/opt/xyz/prs/third.jar
Expected result: 1 /opt/abc/defg/first.jar
2 /opt/dce/efg/second.jar
3 /opt/xyz/prs/third.jar
Thanks