Top "Compare" questions

The analysis required to assess the differences and similarities between two or more entities.

Tool to compare large numbers of PDF files?

I need to compare large count of PDF files for it optical content. Because the PDF files was created on …

testing pdf compare
Javascript String Compare == sometimes fails

How could the following code sometimes evaluate to false? (transport.responseText == '1' || transport.responseText == 'CARD_VALID') My JavaScript code: …

javascript string compare
The right way to compare a System.Double to '0' (a number, int?)

Sorry, this might be a easy stupid question, but I need to know to be sure. I have this if …

c# compare
Compare/Difference of two arrays in Bash

Is it possible to take the difference of two arrays in Bash. What is a good way to do it? …

arrays bash diff compare
How to compare time part of datetime

Let's say we have DateTime t1 = DateTime.Parse("2012/12/12 15:00:00.000"); and DateTime t2 = DateTime.Parse("2012/12/12 15:03:00.000"); How to compare it in C# and …

c# .net datetime compare
java.util.Objects.isNull vs object == null

As you know, java.util.Objects is This class consists of static utility methods for operating on objects. One of …

java java-8 compare
How to compare just the date part and not the time of two Dates?

I want to compare just the date part (and Not the time) of two VB.NET Date objects. Is there …

vb.net date compare
How would you compare two XML Documents?

As part of the base class for some extensive unit testing, I am writing a helper function which recursively compares …

c# .net xml compare xmldocument
Compare JavaScript Array of Objects to Get Min / Max

I have an array of objects and I want to compare those objects on a specific object property. Here's my …

javascript arrays compare
How can I verify that an array of strings contain a certain string?

Given : String[] directions = {"UP","DOWN","RIGHT","LEFT","up","down","right","left"}; String input = "Up"; How can I verify that an …

java arrays string compare