fork download
  1. using static System.Console;
  2.  
  3. public class Program {
  4. public static void Main() {
  5. var nomeCep = "JOSE - 09017092";
  6. var cep = nomeCep.Split('-')[1];
  7. WriteLine($"{cep.Substring(0, 6)}-{cep.Substring(6, 3)}");
  8. }
  9. }
  10.  
  11. //https://pt.stackoverflow.com/q/146600/101
Success #stdin #stdout 0.02s 16124KB
stdin
Standard input is empty
stdout
 09017-092