Logo

Programming-Idioms

  • Lisp
  • D
  • Java

Idiom #38 Extract a substring

Find substring t consisting in characters i (included) to j (excluded) of string s.
Character indices start at 0 unless specified otherwise.
Make sure that multibyte characters are properly handled.

(setf u (subseq s i j))

t is not a good choice for a variable name in Lisp, so using u instead for the result string
auto t = s[i .. j];
String t = s.substring(i,j);

Throws IndexOutOfBoundsException if i is negative, or j is larger than the length of s, or i is larger than j.
T : String := S (I .. J - 1);

In Ada, strings use 1-based indexing

In Ada, J is included by default when slicing

New implementation...