fork download
  1. using System;
  2. using System.Linq;
  3. using System.Diagnostics;
  4. using System.Text.RegularExpressions;
  5.  
  6. namespace ConsoleApplication1
  7. {
  8. class Program
  9. {
  10. static void Main(string[] args)
  11. {
  12. string str = "+123-456/7890";
  13. var onlyNumbers = Convert.ToInt64(Regex.Replace(str, "[^0-9]+", ""));
  14.  
  15. }
  16. }
  17. }
  18.  
  19.  
Success #stdin #stdout 0.06s 36992KB
stdin
stdout
Standard output is empty