Given an input string, I would like to get the output from this in the specified format: filename;path
.
For the input string:
/vob/TEST/.@@/main/ch_vobsweb/1/VOBSWeb/main/ch_vobsweb/4/VobsWebUI/main/ch_vobsweb/2/VaultWeb/main/ch_vobsweb/2/func.js
I expect this output string:
func.js;VOBSWeb/VosWebUI/VaultWeb/func.js
The filename is listed at the end of the whole string, and its path is supposed to be stripped using the characters after each numeric value (eg. /1/VOBSWeb/
and then /4/VobsWebUI
and then /2/vaultWeb
)
Related:
This is related to an earlier C# question, but this time using JavaScript: String manipulation