fork download
  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using System.Linq;
  5. using System.Text.RegularExpressions;
  6.  
  7. public class Test
  8. {
  9. public static void Main()
  10. {
  11. var text = "ما المجموع:\n1+2";
  12. var result = Regex.Match(text, @"المجموع:\s*(.+)")?.Groups[1].Value;
  13. Console.WriteLine(result);
  14. }
  15. }
Success #stdin #stdout 0.06s 21168KB
stdin
Standard input is empty
stdout
1+2