fork download
  1. using static System.Console;
  2.  
  3. public class Test {
  4. public static void Main() {
  5. string texto = "_2910_0908_401 _600_ERV__P_119552_GUARITA ERV SEM ENERGIA RADIO INOPERAN_TE SEMAFOROS P TRENS E VEICLS APAGADOS_PSG TREM C SINAL DE BANDEIRA PELA GUAR_ITA";
  6. string[] partes = texto.Substring(1).Split('_');
  7. partes[0] = "_" + partes[0];
  8. foreach(string parte in partes) WriteLine(parte);
  9. }
  10. }
  11.  
  12. //https://pt.stackoverflow.com/q/38521/101
Success #stdin #stdout 0.02s 15924KB
stdin
Standard input is empty
stdout
_2910
0908
401 
600
ERV

P
119552
GUARITA ERV SEM ENERGIA RADIO INOPERAN
TE SEMAFOROS P TRENS E VEICLS APAGADOS
PSG TREM C SINAL DE BANDEIRA PELA GUAR
ITA