auto p = "no_more_slashes///".stripRight!(a => a == '/');
writeln(p); // no_more_slashes
(defun remove-trailing-slash (string)
"Return a copy of STRING removing one trailing slash character, if any."
(let ((position (position #\/ string :from-end t)))
(if (eql position (1- (length string)))
(subseq string 0 position)
(copy-seq string))))
(setf p (remove-trailing-slash p))
{ local $/='/'; chomp $p }
p.chomp!("/")
p = p.chomp("/")
(clojure.string/replace p #"/$" "")
(defn remove-ending-slash [p] (if (clojure.string/ends-with? p "/") (subs p 0 (dec (count p))) s))
if('/' == s.back()) s.pop_back();
p = p.TrimEnd('/');
auto p = "no_more_slashes///".stripRight!(a => a == '/'); writeln(p); // no_more_slashes
p=p.chomp("/");
if (p.endsWith("/")) p = p.substring(0, p.length - 1);
def main(string), do: String.replace_suffix(string, "/", "")
removeTrailingSlash([$/]) -> []; removeTrailingSlash([]) -> []; removeTrailingSlash([Ch | Rest]) -> [Ch] ++ removeTrailingSlash(Rest).
program x character(len=:),allocatable :: string integer :: ii string='my string/' ii=len(string) string=trim(merge(string(:ii-1)//' ',string,string(ii:ii).eq.'/')) write(*,*)string end program x
p = strings.TrimSuffix(p, "/")
slashscrape p = if last p == '/' then init p else p
const slashscrape = p => ( p.slice (-1) === '/' ? p.slice (0, -1) : p )
p = p.replaceAll("(?<!^)/+$", "");
if (p.endsWith("/")) { p = p.substring(0, p.length() - 1); }
int n = p.length() - 1; while (n != 0 && p.charAt(n) == '/') p = p.substring(0, n--);
p = p.replaceAll("/$", "");
(defun remove-trailing-slash (string) "Return a copy of STRING removing one trailing slash character, if any." (let ((position (position #\/ string :from-end t))) (if (eql position (1- (length string))) (subseq string 0 position) (copy-seq string)))) (setf p (remove-trailing-slash p))
(setf p (string-right-trim "/" p))
p = string.gsub(p,"/$","")
$p = rtrim($p, '/');
begin AllowDirectorySeparators := AllowDirectorySeparators + ['/']; p := ExcludeTrailingPathDelimiter(p); end;
var Len: Integer; begin Len := Length(p); if (Len > 0) and (p[Len] = '/') then Delete(P, Len, 1); end;
{ local $/='/'; chomp $p }
$p =~ s{/$}{};
p = p.rstrip("/")
if p.ends_with('/') { p.pop(); }
p.stripSuffix("/")