mmanela / diffplex

DiffPlex is Netstandard 1.0+ C# library to generate textual diffs.
Apache License 2.0
990 stars 183 forks source link

Cannot diff spaces #94

Open lchthanhth615 opened 2 years ago

lchthanhth615 commented 2 years ago

"This is text 1" and "this is text [many spaces here] 1" => it can not show diff for spaces.

mmanela commented 2 years ago

It does support that. Let me show you some sample code. The below code will take the example you gave and print out two lines, the old and the new while highlighting any changes. I replace spaces with dots to make it easier to see.

Here is the output image

Here is the code:

  private static void Main()
        {

            var diffBuilder = new SideBySideDiffBuilder(new Differ());
            var diff = diffBuilder.BuildDiffModel("This is text 1", "This is text       1", ignoreWhitespace: false);

            PrintDiffSide(diff.OldText);
            PrintDiffSide(diff.NewText);
        }

        private static void PrintDiffSide(DiffPaneModel diff)
        {   
            foreach (var line in diff.Lines)
            {
                foreach (var part in line.SubPieces)
                {
                    var partWithSpacesMadeVisible = part.Text.Replace(" ", "·");
                    switch (part.Type)
                    {
                        case ChangeType.Inserted:
                            Console.ForegroundColor = ConsoleColor.Green;
                            break;
                        case ChangeType.Deleted:
                            Console.ForegroundColor = ConsoleColor.Red;
                            break;
                        case ChangeType.Unchanged:
                            Console.ForegroundColor = ConsoleColor.White;
                            break;
                    }
                    Console.Write(partWithSpacesMadeVisible);
                }

            }
            Console.WriteLine();
        }

@lchthanhth615 let me know if you have any questions on this

lchthanhth615 commented 2 years ago

Thanks @mmanela for your response. Not sure why, but I install the plugin from .NET Nugget Manager (DiffPlex.Wpf.1.3.1 and DiffPlex.1.7.1) and using Diff-viewer on WinForm. And I see it cannot show diff for that case: image

It will work if we replace space to Dot like your example, but it's not make sense in my case.

Could you please help to check ?

mmanela commented 2 years ago

Most likely the WPF control is not exposing the setting to consider white space