This language bar is your friend. Select your favorite languages!
Select your favorite languages :
- Or search :
Idiom #47 Extract string suffix
Create string t consisting in the 5 last characters of string s.
Make sure that multibyte characters are properly handled.

- Clojure
- Clojure
- Cobol
- C++
- C#
- D
- Dart
- Elixir
- Elixir
- Erlang
- Fortran
- Go
- Go
- Groovy
- Haskell
- JS
- Java
- Java
- Kotlin
- Lisp
- Obj-C
- PHP
- Pascal
- Perl
- Python
- Ruby
- Ruby
- Rust
- Rust
- Smalltalk
- VB
- VB
(def t
(when (string? s)
(let [from (-> s (count) (- 5) (max 0))]
(subs s from))))
when with string? take care of nil and other types.
max takes care of strings shorter than 5.
-> (arguably) for readability.
subs uses java.lang.String/substring
max takes care of strings shorter than 5.
-> (arguably) for readability.
subs uses java.lang.String/substring
t := s
r := []rune(s)
if len(r) > 5 {
t = string(r[len(r)-5:])
}
Convert to []rune because some characters are two or more bytes long.
int i = s.length() - 5;
if (isSurrogate(s.charAt(i))) --i;
String t = s.substring(i);
let s = "a̐éö̲\r\n";
let t = s.grapheme_indices(true).rev().nth(5).map_or(s, |(i,_)|&s[i..]);