fork download
  1. using System;
  2. using System.Text.RegularExpressions;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. RegexOptions options = RegexOptions.IgnoreCase;
  9. var rx = new Regex("[^a-zÀ-ÖØ-öø-ÿ-()&\' ]+", options);
  10. for (char ch = (char)0 ; ch <= (char)255 ; ch++) {
  11. if (!rx.Match(""+ch).Success) {
  12. Console.Write(ch);
  13. }
  14. }
  15. }
  16. }
Success #stdin #stdout 0.08s 29020KB
stdin
Standard input is empty
stdout
 &'()-ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþÿ