fork(1) download
  1. using static System.Console;
  2. using System.Text;
  3.  
  4. public class Test {
  5. public static void Main() {
  6. var texto = "Você chegou em 1º lugar, Parabéns!";
  7. var novo = new StringBuilder(texto.Length);
  8. foreach (var c in texto) if ("1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZáéíóúàèìòùâêîôûãõçÁÉÍÓÚÀÈÌÒÙÂÊÎÔÛÃÕÇ ".IndexOf(c) >= 0) novo.Append(c);
  9. WriteLine(novo);
  10. }
  11. }
  12.  
  13. //https://pt.stackoverflow.com/q/25924/101
Success #stdin #stdout 0.03s 22656KB
stdin
Standard input is empty
stdout
Você chegou em 1 lugar Parabéns