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.
- Clojure
- Clojure
- C++
- C#
- D
- D
- Dart
- Elixir
- Erlang
- Fortran
- Go
- Haskell
- JS
- Java
- Java
- Java
- Java
- Lisp
- Lisp
- Lua
- PHP
- Pascal
- Pascal
- Perl
- Perl
- Python
- Ruby
- Ruby
- Rust
- Scala
if('/' == s.back())
s.pop_back();
p = p.TrimEnd('/');
auto p = "no_more_slashes///".stripRight!(a => a == '/');
writeln(p); // no_more_slashes
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
slashscrape p = if last p == '/' then init p else p
const slashscrape = p => (
p.slice (-1) === '/' ?
p.slice (0, -1) :
p
)
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("(?<!^)/+$", "");
p = p.replaceAll("/$", "");
$ here means "end of string"
(setf p (string-right-trim "/" p))
This removes all trailing slashes, not only the last one.
(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))
We only remove a single slash. To remove all ending slashes one can use STRING-RIGHT-TRIM.
POSITION returns the index of the first matching element. The FROM-END keyword causes it to work in reverse, returning the index of the last matching element.
Though it isn't strictly necessary to make a new copy of strings which don't end in a slash, SUBSEQ already does copy its argument and it seems best to be consistent.
POSITION returns the index of the first matching element. The FROM-END keyword causes it to work in reverse, returning the index of the last matching element.
Though it isn't strictly necessary to make a new copy of strings which don't end in a slash, SUBSEQ already does copy its argument and it seems best to be consistent.
p = string.gsub(p,"/$","")
var
Len: Integer;
begin
Len := Length(p);
if (Len > 0) and (p[Len] = '/') then Delete(P, Len, 1);
end;
This is the old fashioned way.
$p =~ s{/$}{};
Use different delimiters { } to avoid having to escape / (the default regexp delimiter). Substitute a trailing / by an empty string.
{ local $/='/'; chomp $p }
Set locally-scoped $/ (a.k.a. $INPUT_RECORD_SEPARATOR when you 'use English') to '/' so that chomp will remove a trailing '/' instead of the default "\n".
p.stripSuffix("/")