0
votes
4answers
68 views
Using jQuery to compare two arrays
Hi all,
I have two arrays of JavaScript Objects that I'd like to compare to see if they are the same. The objects may not (and most likely will not) be in the same order in each a …
0
votes
3answers
59 views
C++ - string.compare issues when output to text file is different to console output?
I'm trying to find out if two strings I have are the same, for the purpose of unit testing. The first is a predefined string, hard-coded into the program. The second is a read in f …
2
votes
1answer
20 views
Compare XML ignoring order of child elements
Does anybody know of a tool that will compare two XML documents. Belay that mocking… there’s more. I need something that will make sure each node in file 1 is also in file 2 regard …
1
vote
4answers
34 views
Check a field in MySql from a php md5 string
hello all!
I'm trying to validate a pair of data columns on mysql from my php page across md5 function.
I've encrypted the string "helloworld" with php md5 function and attempted t …
1
vote
5answers
148 views
Compare Strings in C#
Ok,I am trying to compare two strings every 15 seconds and then update an info box.
Here is the code I have so far to get a text document from the web and store it into a string:
…
0
votes
3answers
100 views
sort vector by more than 1 field
How do I sort the below code by name, age and score... all three fields
#include <string>
#include <vector>
#include <algorithm>
struct student_t
{
s …
2
votes
8answers
164 views
How to detect whether two files are identical in Python
Is making system call to "md5sum file1" and "md5sum file2" and compare two return values enough in this case?
6
votes
4answers
2k 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). S …
0
votes
3answers
24 views
Case Insensitive comparision of strings in Shell script
The == is used to compare two string in shell script, however I want to compare two strings by ignoring case, how it can be done.Do we any standard command for this.
1
vote
5answers
94 views
Eclipse (3.5) how to compare files horizontally?
Hi,
Normally Eclipse 'File Compare' compares files in vertical panels like:
Is there a way I can compare them horizontally like:
Its too tiring to scroll everytime to see wh …
1
vote
2answers
38 views
Compare only Date in nhibernate linq on a DateTime value
Hello,
I trying to compare two dates (DateTime) in nhibernate linq:
query = query.Where(l => (l.datCriacao.Date == dtLote.Date)
but the error:
NHibernate.QueryException: could no …
1
vote
3answers
25 views
Xml comparison and merge tool
I need a tool for comparing and merging two xml-files.
Requirements
Handle large Files (> 50mb)
Collapse XmlNodes in UI
Support validation of files
merge files in both directio …
2
votes
3answers
93 views
Comparing cross point between 2 images in MATLAB
Hello,
I took 2 images with a cross point and now I'm trying to compare these 2 images and find out what is the distance and angle moved. How can I use MATLAB to do this? Thank yo …
0
votes
3answers
2k views
Javascript String Compare
How could the following code sometimes evaluate to false?
(transport.responseText == '1' || transport.responseText == 'CARD_VALID')
My code is as follows:
if (transport.respons …
0
votes
1answer
56 views
Best way to compare .NET enum values
What's the best way in code to compare enum values? For example, if I have the following enum type:
public enum Level : short {
Low,
FairlyLow,
QuiteLow,
NotRe …
