Sixth digit from the sequence

Hi @sullivanne

Try this:

sequence = "123456789"

sixthDigit = sequence.Substring(5, 1)

image

Hope it helps!!

1 Like