Search found 1 match

by Airis
Mon Sep 24, 2012 1:03 am
Forum: Support (DiffMerge)
Topic: Ignoring white-space difference
Replies: 1
Views: 9444

Ignoring white-space difference

I want to ignore white-space differences.

I have a couple of examples of lines I want to consider as equal lines:

1a) if($foo=="bar")
1b) if ($foo == "bar")

2a) $foo='b'.'a'.'r';
2b) $foo = 'b' . 'a' . 'r';

Is there a way I can treat a's and b's as equals?