"Columbia".substring(1,4)

index 0: C

1: start index

4: 1 past the endex

index 1: o

index 2: l

index 3: u

returns: olu

String x = "Columbia:'
x.substring(1,4);

substring → "olu"