fork(1) download
  1. using System;
  2. using System.Text;
  3. using System.Linq;
  4. using System.Collections.Generic;
  5. using System.Reflection;
  6.  
  7. public class Program
  8. {
  9. public static void Main(string[] args)
  10. {
  11. string insertString = @"INSERT INTO tb1(field1,field2,field3) VALUES (1,2,3);
  12. INSERT INTO tb1(field1,field2,field3) VALUES (4,5,6);
  13. INSERT INTO tb1(field1,field2,field3) VALUES (7,8,9);";
  14. IEnumerable<string> inserts = insertString.Split(new[] { Environment.NewLine }, StringSplitOptions.None);
  15. string firstInsert = inserts.First();
  16. int tableIndex = firstInsert.IndexOf("INSERT INTO ") + "INSERT INTO ".Length;
  17. string table = firstInsert.Substring(
  18. tableIndex, firstInsert.IndexOf("(", tableIndex) - tableIndex);
  19. var regex = new System.Text.RegularExpressions.Regex(@"\(([^)]+)\)", System.Text.RegularExpressions.RegexOptions.Compiled);
  20. string columns = regex.Matches(firstInsert)[0].Value;
  21.  
  22. IEnumerable<string> values = inserts.Select(sql => regex.Matches(sql)[1].Value);
  23.  
  24. string insertAll = string.Format("INSERT INTO {0}{1} VALUES {2};"
  25. , table
  26. , columns
  27. , string.Join(",", values.ToArray()));
  28.  
  29. Console.Write("Result: " + insertAll);
  30. }
  31. }
Success #stdin #stdout 0.1s 33920KB
stdin
Standard input is empty
stdout
Result: INSERT INTO tb1(field1,field2,field3) VALUES (1,2,3),(4,5,6),(7,8,9);