Search notes:

System.String.Substring

$txt = '0123456789'
$txt.Substring(7)
# 789
$txt.Substring(5,2)
# 56

Index