Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating material.
Please try to avoid dependencies to third-party libraries and frameworks.
p' = dropWhileEnd (== pathSeparator) p
int n = p.length() - 1;
while (n != 0 && p.charAt(n) == separatorChar)
p = p.substring(0, n--);
if string.sub(p, -1, -1) == "/" then
p=string.sub(p, 1, -2)
end
"/" is tolerated by io library regardless of a platform.
p.chomp!("/")
Ruby uses / as path separator on all platforms, including windows.