add support java equals ignore case
JCASTANO opened this issue · comments
Juan Esteban Castaño Rincón commented
please add support for equals ignore case, so that it can be enabled or disabled
DiffMatchPatch dmp = new DiffMatchPatch();
LinkedList diffs = dmp.diffMain("Juan", "juan");
dmp.diffCleanupSemantic(diffs);
Dennis Snell commented
is there any support for case inequality anywhere else in the project, in the other language libraries?
are you specifically asking for case-inequality in the en_US
locale? it would be important to make sure that the computer generating the diff doesn't apply different casing rules than the computer applying the patch, as locale differences could lead to corruption.