fork download
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4.  
  5. public class Test
  6. {
  7. static IEnumerable<string> DividirBlocos(string texto, double blocos){
  8. return Enumerable.Range(0, (int)Math.Ceiling(texto.Length / blocos))
  9. .Select(i => new string(texto
  10. .Skip(i * (int)blocos)
  11. .Take((int)blocos)
  12. .ToArray()));
  13. }
  14.  
  15. public static void Main()
  16. {
  17. var texto = "13032015joao14032014Juca25";
  18. var partes = DividirBlocos(texto, 12);
  19.  
  20. foreach (var parte in partes){
  21. Console.WriteLine(parte);
  22. // 13032015joao
  23. // 14032014Juca
  24. // 25
  25. }
  26. Console.ReadLine();
  27. }
  28. }
Success #stdin #stdout 0.03s 24160KB
stdin
Standard input is empty
stdout
13032015joao
14032014Juca
25