fork(1) download
  1. using static System.Console;
  2.  
  3. public class Program {
  4. public static void Main() {
  5. var fone = "(12)34567-8901";
  6. WriteLine(fone.Substring(1, 2));
  7. WriteLine(fone.Substring(4, 5) + fone.Substring(10, 4));
  8. }
  9. }
  10.  
  11. //https://pt.stackoverflow.com/q/162979/101
Success #stdin #stdout 0.02s 15740KB
stdin
Standard input is empty
stdout
12
345678901