コード例 #1
0
ファイル: TableDataTest.cs プロジェクト: ngaisteve1/CodeJam
 public string PrintFixedWidth(string source, int[] widths)
 {
     using var res = new StringWriter();
     FixedWidthFormat.Print(
         res,
         FixedWidthFormat.CreateParser(widths).Parse(source).Select(dl => dl.Values),
         widths);
     return(res.ToString());
 }
コード例 #2
0
ファイル: TableDataTest.cs プロジェクト: jack128/CodeJam
 public string ParseFixedWidth([NotNull] string source, [NotNull] int[] widths) =>
 FixedWidthFormat
 .CreateParser(widths)
 .Parse(source)
 .Select(l => l.ToString())
 .Join("; ");