fork download
  1. using System;
  2. using static System.Console;
  3.  
  4. public class Program {
  5. public static void Main() {
  6. WriteLine("123456789".Right(4));
  7. }
  8. }
  9.  
  10. namespace System {
  11. public static class StringExtensions {
  12. public static string Right(this string texto, int length) => texto.Substring(texto.Length - length);
  13. }
  14. }
  15.  
  16. //https://pt.stackoverflow.com/q/349829/101
Success #stdin #stdout 0.02s 15908KB
stdin
Standard input is empty
stdout
6789