Tagged Questions
The string-comparison tag has no wiki summary.
77
votes
11answers
18k views
Good Python modules for fuzzy string comparison?
I'm looking for a Python module that can do simple fuzzy string comparisons. Specifically, I'd like a percentage of how similar the strings are. I know this is potentially subjective so I was hoping ...
23
votes
5answers
6k views
Difference between InvariantCulture and Ordinal string comparision
When comparing two strings in c# for equality, what is the difference between InvariantCulture and Oridinal comparision.
11
votes
15answers
744 views
Algorithm for almost similar values search
I have Persons table in SQL Server 2008.
My goal is to find Persons who have almost similar addresses.
The address is described with columns state, town, street, house, apartment, postcode and ...
11
votes
6answers
7k views
Similarity String Comparison in Java
I want to compare several strings to each other, and find the ones that are the most similar. I was wondering if there is any library, method or best practice that would return me which strings are ...
10
votes
5answers
992 views
MySQL case sensitive string comparison?
I have a function that returns five characters with mixed case. If I do a query on this string it will return the value regardless of case.
How can I make MySQL string queries case sensitive?
10
votes
8answers
28k views
If statement with String comparison fails
I really don't know why the if statement below is not executing:
if (s == "/quit")
{
System.out.println("quitted");
}
Below is the whole class.
It is probably a really stupid logic problem but ...
9
votes
7answers
2k views
Comparing strings with tolerance
I'm looking for a way to compare a string with an array of strings. Doing an exact search is quite easy of course, but I want my program to tolerate spelling mistakes, missing parts of the string and ...
7
votes
5answers
2k views
Is == in PHP a case-sensitive string comparison?
I was unable to find this on php.net. Is the double equal sign (==) case sensitive when used to compare strings in PHP?
7
votes
4answers
14k views
How do I compare two strings in Perl?
How do I compare two strings in Perl?
I am learning Perl, I had this basic question looked it up here on StackOverflow and found no good answer so I thought I would ask.
6
votes
3answers
204 views
Is there any way to sort strings in all languages?
I have this code. It sorts correctly in French and Russian. I used Locale.US and it seems to be right. Is this solution do right with all languages out there? Does it work with other languages? For ...
6
votes
2answers
275 views
What is difference between different string compare methods [closed]
Possible Duplicate:
Differences in string compare methods in C#
In .NET there are many string comparison methods, i just wanna confirm which one is the best
to use and also should have best ...
6
votes
6answers
841 views
'Regular Expression' VS 'String Comparison operators / functions'
This question is designed around the performance within PHP but you may broaden it to any language if you wish to.
After many years of using PHP and having to compare strings I've learned that using ...
6
votes
1answer
5k views
Cast collation of nvarchar variables in t-sql
I need to change the collation of an nvarchar variable. By documentation:
(...)
3. The COLLATE clause can be specified
at several levels. These include the
following:
Casting the ...
6
votes
6answers
193 views
Constant strings address
I have several identical string constants in my program:
const char* Ok()
{
return "Ok";
}
int main()
{
const char* ok = "Ok";
}
Is there guarantee that they are have the same address, i.e. ...
6
votes
7answers
195 views
What are some good methods to find the “relatedness” of two bodies of text?
Here's the problem -- I have a few thousand small text snippets, anywhere from a few words to a few sentences - the largest snippet is about 2k on disk. I want to be able to compare each to each, and ...
6
votes
5answers
13k views
C++ Compare char array with string
I'm trying to compare a character array against a string like so:
const char *var1 = " ";
var1 = getenv("myEnvVar");
if(var1 == "dev")
{
// do stuff
}
This if statement never validates as ...
5
votes
1answer
220 views
JavaScript string comparison fails randomly
I’m having a pretty weird bug occurring in my JS application on a random basis. Basically, the script fails to accurately compare two strings. More specifically, at times does not see two identical ...
5
votes
2answers
131 views
compare adjacent elements of the same vector (avoiding loops)
I managed to write a for loop to compare letters in the following vector:
bases <- c("G","C","A","T")
test <- sample(bases, replace=T, 20)
test will return
[1] "T" "G" "T" "G" "C" "A" "A" ...
5
votes
9answers
169 views
Split a string and return greatest in mssql
I need to find a way to get the data with the highest versionNumber.
Here is my database design:
VERSIONNUMBER - varchar(15)
DOWNLOADPATH - varchar(100)
Lets say I have records like:
...
5
votes
2answers
472 views
Getting the closest string match
I need a way to compare multiple strings to a test string and return the string that closely resembles it:
TEST STRING: THE BROWN FOX JUMPED OVER THE RED COW
CHOICE A : THE RED COW JUMPED OVER THE ...
5
votes
6answers
224 views
String.Empty in strings, need some explanation if possible :)
2 days ago, there was a question related to string.LastIndexOf(String.Empty) returning the last index of string:
Do C# strings end with empty string?
So I thought that; a string can always contain ...
5
votes
6answers
402 views
How to find a similar word for a misspelled one in PHP?
I'll explain my problem:
I have a database table called country. It has two columns: ID and name.
When I want to search for 'paris', but misspelled the word: 'pares' ('e' instead of 'i'), I won't ...
5
votes
8answers
3k views
How to check whether a string is not null & empty?
In my web app, I have a search field where I get some string and a combo box. So, I am sending two arguments to the remote function.
I want to check that the user input is not null and not empty. ...
5
votes
8answers
1k views
String.comparison performance (with trim)
I need to do alot of high-performance case-insensitive string comparisons and realized that my way of doing it .ToLower().Trim() was really stupid due do all the new strings being allocated
So I ...
5
votes
2answers
780 views
Why should I use string.length == 0 over string == “” when checking for empty string in ECMAScript?
Most of the developers on my current project use a (to me) strange way to check for empty strings in ECMAScript:
if (theString.length == 0)
// string is empty
I would normally write this ...
4
votes
4answers
70 views
If “a == b” is false when comparing two NSString objects?
I have a class with an accessible method that passes back an NSString when called.
[MyClass getMyString]
The string variable in that class is actually assigned in the didSelectRowAtIndexPath part ...
4
votes
6answers
728 views
How to read only 20 characters from a string and compare to other string?
I am working on hashing. I am hashing a phrase and I can only use 20 characters of the phrase.
How can I read only 20 characters of a string?
How can I compare strings if they are the same?
4
votes
5answers
256 views
Detecting string similarity using Levenshtein distance (is SLOW)
The query returns 21 million records
They way I loop through this table takes forever. What other solutions are there?
SqlDataReader rd = DbInfo.DataRdr(Conn,
"SELECT a.NAME AS ANAME, b.NAME AS ...
4
votes
1answer
634 views
comparing two strings in SQL Server
Is there any way to compare two strings in SQL Server 2008 stored procedure like below?
int returnval = STRCMP(str1, str2)
returns 0 if the strings are the same
returns -1 if the first argument is ...
4
votes
7answers
221 views
What's the best way to compare arrays of strings in perl
I'm trying to compare multiple arrays of strings containing file listings of directories. The objective is to determine which files exist in each directory AND which files do not exists. Consider:
...
4
votes
3answers
159 views
Are there any string comparison alogrithms out there that are “better” than Levenshtein Distance?
I have been using it for a project I am working on, but some of the results aren't what I would choose. For example:
When "Date" is compared to
"State" it has a lev distance of 2
"Today's Date" it ...
4
votes
7answers
322 views
Compare Strings as if they were numbers
I was wondering if it is possible to compare strings as if they were numbers. For instance is there any way you could make it so that "Cat" > "Dog"
4
votes
2answers
178 views
How do you tell if two wildcards overlap?
Given two strings with * wildcards, I would like to know if a string could be created that would match both.
For example, these two are a simple case of overlap:
Hello*World
Hel*
But so are all ...
4
votes
2answers
219 views
Comparison of music data
I am looking for theory, algorithms and similar for how to compare music. More specifically, I am looking into how to dupecheck music tracks that have different bitrates or perhaps slightly different ...
3
votes
6answers
71 views
What is the performance expense of string comparisons for INotifyPropertyChanged?
I was wondering about why MS decided to use strings in the design of INotifyPropertyChanged?
My initial worry was the large expense of doing string comparisons on every change notification, and I was ...
3
votes
6answers
156 views
how to compare 2 strings by each characters in perl
basically I want to compare
$a = "ABCDE";
$b = "--(-)-";
and get output CE.
i.e where ever parentheses occur the characters of $a should be taken.
3
votes
3answers
169 views
SQL Server | String Comparison
I am facing some strange issue and want to understand the reason behind this.
We have two database servers Say A and B. On both of these servers we have our application database (Same schema but ...
3
votes
3answers
174 views
Comparing Unicode Strings in C Returns Different Values Than C#
So I am attempting to write a compare function in C which can take a UTF-8 encoded Unicode string and use the Windows CompareStringEx() function and I am expecting it to work just like .NET's ...
3
votes
2answers
128 views
Please explain this PHP syntax
I've looked up the functions in the manual, but I still don't get this. According to the person who wrote the code, if the User enters "y" then the function (not shown here) will execute. However, ...
3
votes
3answers
97 views
Comparing literal empty strings in C
In C, what is the following specified to do?
if ("" == "")
{
printf("Empty strings are equal\n");
}
I have a compiler on hand that tells me that "" is indeed equal to "". But is this equality ...
3
votes
3answers
226 views
Issue with string comparison in PHP
I have two strings with seemingly the same values. One is stored as a key in an array, the other a value in another different array. I compare the two using ==, ===, and strcmp. All treat them as ...
3
votes
3answers
425 views
Double-byte string comparison in C#
I have two strings one with a double-byte value and the other is a single byte-one. The string comparison result returns false, how do I get them to compare correctly after ignoring the ...
3
votes
3answers
276 views
String comparison and String interning in Java
When should one compare Strings as objects and when should one use their equals method? To make sure, I always use equals, but that doesn't seem very efficient. In what situations can I be certain ...
3
votes
2answers
277 views
How do I perform an encoding-independent string-comparison in Java?
I'm having a strange problem comparing strings. I send a string to my server (as bytes using getBytes()) from the client. I've ensured that encoding is the same on the client and server by starting ...
3
votes
5answers
962 views
Understanding NSString comparison in Objective-C
Both the following resolve to True:
1)
@"foo" == @"foo" (is True)
2)
NSString *myString1 = @"foo";
NSString *myString2 = @"foo";
myString1 == myString2 (is True)
However, there are definitely ...
3
votes
2answers
408 views
rails comparing values of params[:id] and session[:user_id] not working
I'm new to rails after moving from PHP and am having no end to the frustrations, but hopefully there is a steep learning curve.
I was following a guide on how to make a twitter clone in rails, and ...
3
votes
1answer
583 views
Make Entity Framework be case-insensitive
Is it possible to set entity framework string comparison case insensitive by default?
If I use
string.StartsWith("stringToCompare", StringComparison.CurrentCultureIgnoreCase)
it works. But when I ...
3
votes
2answers
187 views
strnicmp equivalent for UTF-8?
What do I use to perform a case-insensitive comparison on two UTF-8 encoded sub-strings? Essentially, I'm looking for a strnicmp function for UTF-8.
3
votes
3answers
452 views
C# matching two text files, case sensitive issue
What I have is two files, sourcecolumns.txt and destcolumns.txt. What I need to do is compare source to dest and if the dest doesn't contain the source value, write it out to a new file. The code ...
3
votes
3answers
101 views
Find a name in a list if the name is spelt wrong
I've got a list of names which some code checks against to see if the person exists, and if so do some stuff..
My issue is that I want to handle the case of the name being entered incorrectly.. I.e. ...