I have the following text:
_2910_0908_401 _600_ERV__P_119552_GUARITA ERV WITHOUT ENERGY RADIO INOPERAN_TE SEMAFOROS P TRENS AND VEICLS OFF_PSG TREM C FLAG SIGN BY GUAR_ITA
I use Split
to break every "_"
itens = this.EntidadeMacro.Texto.Split('_');
Is there any way I can ignore the first "_" and start going from the second.
Example: My code is doing the following:
_
2910
and leaving this position empty.
and what I need and I'm trying to find a way to do and break from the 2nd "_":
_2910
0908
401
and so on ...