Logo

Programming-Idioms

  • Scala
  • Ruby

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.

t = s[i..j-1] 

In ruby j is included by default
s = "test"
t = "s[0..1] => "te"
val t = s.substring(i, 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...