Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

36
votes
11answers
65k views

Compare 2 dates with JavaScript

Can some one suggest a way to compare values of 2 dates greater then, less then and not in the past using javascript. They values will be coming from text boxes Thanks
36
votes
14answers
39k views

How to compare two PDF files?

I need to compare large count of PDF files for it optical content. Because the PDF files was created on different platforms and with different versions of the software there are structural ...
24
votes
3answers
12k views

How would you compare jQuery objects?

So I'm trying to figure out how to compare two jQuery objects, to see if the parent element is the body of a page. here's what I have: if ( $(this).parent() === $('body') ) ... I know this is ...
22
votes
11answers
17k views

How to compare 2 files fast using .NET?

Typical approaches recommend reading the binary via FileStream and comparing it byte-by-byte. Would a checksum comparison such as CRC be faster? Are there any .NET libraries that can generate a ...
20
votes
7answers
523 views

How to compare two colors

I want to design a program that can help me assess between 5 pre-defined colors wich one is more similar to a variable color, and with what percentage. The thing is that I don't know how to do that ...
19
votes
6answers
14k views

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 the nodes of one XmlDocument object to another in C# (.NET). Some requirements of ...
14
votes
3answers
736 views

Easiest way to compare arrays in C#

In Java, Arrays.equals() allows to easily compare the content of two basic arrays (overloads are available for all the basic types). Is there such a thing in C# ? Is there any "magic" way of ...
14
votes
5answers
435 views

String comparison in .Net: “+” vs “-”

I always assumed that .Net compares strings lexicographically, according to the current culture. But there is something strange when one of the strings ends on '-': "+".CompareTo("-") Returns: 1 ...
14
votes
8answers
21k views

How to parse a month name (string) to an integer for comparison in C#?

I need to be able to compare some month names I have in an array. It would be nice if there were some direct way like: Month.toInt("January") > Month.toInt("May") My Google searching seems to ...
13
votes
4answers
5k views

std::string comparison (check whether string begins with another string)

I need to check whether an std:string begins with "xyz". How do I do it without searching through the whole string or creating temporary strings with substr(). Thanks.
11
votes
1answer
3k views

Ruby string compare regardless of string case

I need to check for "Apple" = "Apple" TRUE "Apple" = "APPLE" TRUE "Apple" = "Apple1" FALSE in ruby I need a string comparison but for the check to not be case sensitive. thks
11
votes
7answers
7k views

Image comparison algorithm

I'm trying to compare images to each other to find out whether they are different. First I tried to make a Pearson correleation of the RGB values, which works also quite good unless the pictures are a ...
11
votes
4answers
1k views

Compare Version Identifiers

Here is my code, which takes two version identifiers in the form "1, 5, 0, 4" or "1.5.0.4" and determines which is the newer version. Suggestions or improvements, please! /// <summary> ...
9
votes
8answers
4k views

In Perl, is there a built in way to compare two arrays for equality?

I have two arrays of strings that I would like to compare for equality: my @array1 = ("part1", "part2", "part3", "part4"); my @array2 = ("part1", "PART2", "part3", "part4"); Is there a built-in way ...
9
votes
7answers
30k views

C# object is not null but (myObject != null) still return false

I need to do a comparaison between an object and NULL. When the object is not NULL I fill it with some data. Here is the code : if (region != null) { .... } This is working but when looping ...
8
votes
1answer
693 views

Compare two Images in JavaScript

I am trying to determine if two images are the same in javascript (even if the src urls are different). My specific use case is within a chrome extension (though this being a chrome extension ...
8
votes
4answers
217 views

C# - I'm trying to understand Microsoft's DoubleUtil.AreClose() code that I reflected over

If you reflect over WindowsBase.dll > MS.Internal.DoubleUtil.AreClose(...) you'll get the following code: public static bool AreClose(double value1, double value2) { if (value1 == value2) ...
8
votes
5answers
2k views

Firefox 3 vs Firefox 4 development difference?

I was thinking of updating to Firefox 4 (currently running Firefox 3.6.15 -- hold on not a software question specifically!) and had some concerns when it comes to web development. My only concern is ...
8
votes
3answers
2k views

Compare 2 JSON objects [closed]

Possible Duplicate: Object comparison in JavaScript Is there any method that takes in 2 JSON objects and compares the 2 to see if any data has changed? Edit After reviewing the comments, ...
8
votes
2answers
243 views

Emacs technique for comparing sections of documents?

I'd like to be able to open two windows in Emacs, select a region of text in each window, and get a comparison of the difference between the two selections. This would be very handy for a ...
8
votes
4answers
1k views

How to compare UTF-8 strings in Javascript?

When I wrote in JavaScript "Ł" > "Z" it returns true. In Unicode order it should be of course false. How to fix this? My site is using UTF-8.
8
votes
6answers
5k views

Sorting Divs in jQuery by Custom Sort Order

Greetings Y'all. It's my first time asking a question but having perused the site for about 8 months I think it's an appropriate one. Basically I'm trying to re-sort the child elements of the tag ...
8
votes
13answers
6k views

What is best tool to compare two SQL Server databases (schema and data)?

I would like to compare two SQL Server databases including schema (table structure) and data in tables too. What is best tool to do this?
8
votes
4answers
2k views

Compare two arrays of primitives in Java?

I know about Arrays.deepEquals(Object[], Object[]) but this doesn't work for primitive types (due limitations of arrays and autoboxing, see this related post). With that in mind, is this the most ...
8
votes
4answers
25k views

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 a way to do that?
8
votes
3answers
1k views

An easy way to diff log files, ignoring the time stamps?

I need to diff two log files but ignore the time stamp part of each line (the first 12 characters to be exact). Is there a good tool, or a clever awk command, that could help me out?
7
votes
2answers
428 views

PHP/MySQL - find items that have similar or matching properties

I'm trying to develop a way of taking an entity with a number of properties and searching for similar entities in the database (matching as many of the properties in the correct order as possible). ...
7
votes
3answers
686 views

How should I compare Perl references?

I want to check if two references point to the same object. It seems I can simply use if ($ref1 == $ref2) { # cheap numeric compare of references print "refs 1 and 2 refer to the same thing\n"; } ...
7
votes
5answers
3k views

Compare RGB colors in c#

I'm trying to find a way to compare two colors to find out how much they are alike. I can't seem to find any resources about the subject so I'm hoping to get some pointers here. Idealy, I would like ...
7
votes
6answers
309 views

What exactly does comparing Integers with == do?

EDIT: OK, OK, I misread. I'm not comparing an int to an Integer. Duly noted. My SCJP book says: When == is used to compare a primitive to a wrapper, the wrapper will be unwrapped and the ...
7
votes
10answers
2k views

SQL Server database compare and sync tool (Free)

Looking for a free and best tool to compare and sync two SQL Server databases. I've searched in stackoverflow for the compare tools but most of them are buy only. Basically this tool will be used for ...
7
votes
4answers
504 views

Compare two object from the same class with tons of fields

I got two objects from the same class and I need to compare them field by field. The problem is that they have close to hundred fields and it would be helluva work to write that by hand. Do you know ...
7
votes
5answers
1k views

Compare images to find differences

Task: I have a camera mounted on the end of our assembly line, which captures images of produced items. Let's for example say, that we produce tickets (with some text and pictures on them). So every ...
7
votes
5answers
1k views

Java. Ignore accents when comparing strings

The problem it's easy. Is there any function in JAVA to compare two Strings and return true ignoring the accented chars? ie String x = "Joao"; String y = "João"; return that are equal. Thanks
6
votes
7answers
292 views

Remove object from generic list by id

I have a domain class like this: public class DomainClass { public virtual string name{get;set;} public virtual IList<Note> Notes{get;set;} } How would i go about removing an item from ...
6
votes
8answers
614 views

Quick Sort vs Selection Sort (Java vs C++)

I created two projects. One in C++ and one in Java. I did time trials for a QuickSort and SelectionSort for both. Oddly enough I found some very strange behavior. Here were the results for an array ...
6
votes
3answers
490 views

NSString - how to go from “ÁlgeBra” to “Algebra”

Does anyone knows hoe to get a NSString like "ÁlgeBra" to "Algebra", without the accent, and capitalize only the first letter? Thanks, RL
6
votes
5answers
290 views

checking two object instances to see if they are the same

i need to compare two objects but compare a number of their properties in one hit. this is not for sorting, but instead to confirm whether anything has changed; as one is the old saved instance, and ...
6
votes
6answers
1k views

Quickly find differences between two large text files

I have two 3GB text files, each file has around 80 million lines. And they share 99.9% identical lines (file A has 60,000 unique lines, file B has 80,000 unique lines). How can I quickly find those ...
6
votes
3answers
2k views

Compare 2 images in php

Comparing 2 images to see if they are both the same files are easy, threw the files MD5, but is it possible or even plausible to determine if 2 images are same by using PHP GD to get the difference of ...
6
votes
2answers
356 views

Javascript Arrays - Checking two arrays of objects for same contents, ignoring order

I have two JavaScript arrays (A and B) that contain objects that I created. I want to check that all the objects in array A are contained in array B, but not necessarily in the same order. What is ...
6
votes
4answers
779 views

When you call remove(object o) on an arraylist, how does it compare objects?

When you call remove(object o) on an arraylist in java, how does it compare the objects to find the correct one to remove? does it use the pointer? or does it compare the objects using the interface ...
6
votes
1answer
277 views

Problem comparing French character Î

When comparing "Île" and "Ile", C# does not consider these to be to be the same. string.Equals("Île", "Ile", StringComparison.InvariantCultureIgnoreCase) For all other accented characters I ...
6
votes
3answers
3k views

Scalability of Ruby on Rails versus PHP

Can anyone comment on which is more scalable between RoR and PHP? I have heard that RoR is less scalable than PHP since RoR has a little more overhead with its MVC framework while PHP is more low ...
6
votes
4answers
216 views

Compare 7 words to eachother to see if 5 of them are equal. How?

I have seven words in the array: string[7] = {x,x,x,x,x,x,x}; the x is generated from another array: string[4]={a,b,c,d}; that means each x can be either a or b or c or d. It is randomly ...
6
votes
6answers
488 views

C++ Need to compare one string to 200.000 words

In my program in C++ ... User types in program string "foo". I need to compare this string to my strings, in txt files to write: this string is noun! (or adjective...) I got few TXT files - one ...
6
votes
3answers
5k views

Check if enum exists in Java

Is there anyway to check if an enum exists by comparing it to a given string? I can't seem to find any such function. I could just try to use the valueOf method and catch an exception but I'v been ...
6
votes
3answers
18k views

Mysql Compare two datetime fields

I want to compare two dates with time, I want all the results from tbl where date1 > date2 Select * From temp where mydate > '2009-06-29 04:00:44'; but it is just comparing dates not time. it ...
6
votes
4answers
7k views

C# Binary File Compare

I'm in a situation where I want to compare two binary files. One of them is already stored on the server with a pre-calculated Crc32 in the database from when I stored it originally. I know that if ...
5
votes
2answers
150 views

Sorting a list of lists by the seconds element in Haskell

I'm having a hard time when i try to order a list of lists by the second element, something like this list = [[_,B,_,_,_],[_,A,_,_,_],[_,C,_,_,_]] into this list = ...

1 2 3 4 5 22