Split String at the 8th digit

Hello,

I have a string: 2019072300113506NIF
I would like to extract these numbers 00113506 (so always split after the 8th Digit).

Any ideas how to do it :slight_smile: Thanks

Hi @juliahansen91,

You can use substring concept here,

strValue = 2019072300113506NIF
strValue.Substring(8, 8)