How does one index/split/splice strings in OCaml like we do in Python?

I want to do:

"abc"[1:2]

to get

"bc"
# String.sub "abc" 1 2 ;;
- : string = "bc"