is there any way to split the url path for example "/de/about in two parts using either express or node url, meaning I would like to have path[0] = es path[1] = about
// doing it this way I get path[0] = "d" and so on
var path = url.parse(req.url).pathname;
thank in advance