i need to trim this string -> http://hokuspokus/ixdebude/ix and i exactly Need this part of the string /ixdebude/ix
I have 2 expressions to solve my P
You could use a regex like this:
//.*?(/.*)
Working demo
For javascript, you could use:
var re = /\/\/.*?(\/.*)/;
var str = 'http://hokuspokus/ixdebude/ix';
var m;
if ((m = re.exec(str)) !== null) {
if (m.index === re.lastIndex) {
re.lastIndex++;
}
// View your result using the m-variable.
// eg m[0] etc.
}