string-comparison is the action of comparing strings, resulting in a boolean or an integer indicating the "distance" between the strings.

learn more… | top users | synonyms

12
votes
3answers
299 views

Smart string comparison

I am looking for a library/class that allows smart compare of two strings. At best it would give as a result percent of how two strings are alike. I am comparing company names, addresses that are ...
0
votes
6answers
60 views

Find whether a string matches another string

I'd like to parse a string in order to see if it matches the entire string or a substring. I tried this: String [] array = {"Example","hi","EXAMPLE","example","eXamPLe"}; String word; ... if ( ...
-1
votes
2answers
27 views

Making Excel VB compare cells and then select all rows which contain the same data in a cell and re-format plus chart

Simple question but I simply cannot find an answer. I find searching through the awkward excel visual basic manual with only beginner level knowledge very frustrating. Please help. I have data from a ...
1
vote
2answers
21 views

MySQL Problems with IF Statement and TIMESTAMP

I'm trying to make a query that has the following behaviour: Insert a new row if :id = NULL or a row where id = :id doesn't exist yet. Update the an existing row if a row where id = :id already ...
3
votes
2answers
34 views

Compare two strings (but different types of)

In a C++ program, I need to compare if 2 strings are equals or not : TagLib::String artist1 = f.tag()->artist(); (see http://taglib.github.io/api/classTagLib_1_1String.html) and argv[2] ...
0
votes
2answers
22 views

Trying to accomplish similar functionality of .contains on an array of string using substring

I have an array of directory paths: Directory.GetFiles(uploadPath) I want to check this array to see if a file exists in one of the file paths. After looking at some of the similar questions on SO, ...
0
votes
0answers
26 views

Value comparison with NSString - Xcode

I'm trying to compare a value to one stored in a NSString, but I get the following error: Implicit conversion of int to 'NSArray *' is disallowed with ARC Here is my code: NSString *tmplabel = ...
1
vote
1answer
39 views

Compare 2 excel columns, the result will be compared to another column

I'm pretty new to vba, and I'm having a problem on comparison of two columns (all of the data under this 2 columns). The workflow is, Column A compare to Column B with result to be put in Column C. ...
1
vote
2answers
50 views

How to get the 1st match between 2 string arrays

I have 2 string arrays. The one is the base and the other is changing. string[] baseArray = { "Gold", "Silver", "Bronze" }; string[] readArray = { "Bronze", "Silver", "Gold" }; // After comparing ...
0
votes
4answers
91 views

C# Equivalent of VB String Greater Than

Have an old vb6 project that is being rewritten in C# and a function has the following code: If (strPlainChar >= "A" And strPlainChar <= "Z") Then But obviously C# if statement won't allow a ...
-2
votes
0answers
77 views

String value not getting compared [closed]

I m getting very silly error as i gets value from database into string and then perform simple comparison on strings but facing problem ...here is the code d.getButtonClick() function get value ...
1
vote
2answers
51 views

Getting differences between 2 NSString

I've got 2 NSString and I wanna get the differences between these 2 strings.. let me make an example: NSString *pippo = @"pippo"; NSString *pippone = @"pippone"; I would like something like ...
-1
votes
1answer
32 views

Text field not responding to combo box selection

Am kind of a beginner. I have an application in which I have a combo box. The combo box has two strings/items 1 being "Add" and 2nd being "Minus". If I select "Add" from the combo box my jText field ...
0
votes
1answer
35 views

Checking a word against a dictionary

I want a way of checking a word against a dictionary (if at all possible). If not possible against a dictionary then check against a list of words (txt or excel sheet). Dim word As String ...
-4
votes
2answers
41 views

How to compare two strings, and output the first if they're not equal [closed]

I have the following problem... I need to compare two string and output the first one if they are not equal. Something like the code below, but printing the first string instead. How can I do it? ...
2
votes
2answers
49 views

Case Insensitive Dictionary with Tuple Key

I have a dictionary where the key is a Tuple where the first item is a Date and the second item is a string. I would like the dictionary to be case insensitive. I know that if the key was just a ...
0
votes
1answer
64 views

How to find similar matching of words in database in java

I have a list of words which are not properly pronounced i.e smartphone is pronounced as smartphon also private as privat. So I will match the poorly pronounced word with the database which contains ...
2
votes
3answers
77 views

Python: comparing a few thousand strings. Any fast alternatives for comparison?

I have a set of around 6 000 packets which for comparison purposes I represent as strings (first 28 bytes) to compare against just as many packets, which I also represent as strings of 28 bytes. I ...
-1
votes
4answers
110 views

A good algorithm for string comparing (like Total Commander compare)

I want to create a string compare script in c++. Total Commander file compare function is pretty good: How does this algorithm work? Can somebody share a snippet for this function?
0
votes
1answer
111 views

Password validation confirmation in android

I have this activity in which I want to validate the confirm password field.This is my code-: nt.setOnClickListener(new OnClickListener() { public void onClick(View v) { ...
0
votes
4answers
124 views

Find if any element is present in System.Array or not and if exists remove from the original

I have three System.Array where I store basically phone numbers with 10 characters. The definition is this: private static System.Array objRowAValues; private static System.Array objRowBValues; ...
1
vote
1answer
186 views

C# String compare not working

I'm having some issues with the string comparison of a string the is received by Request.queryString and a line from a file .resx. The code receive Request.queryString to a variable named q, then it ...
0
votes
1answer
83 views

Find string similarities between two dimensions in SQL

I have two tables and I want to find matches where values can be found in one of the tables and where they are in the second. In table A I have a list over search queries by users, and in table B I ...
1
vote
2answers
188 views

C# Login screen using sql database not working

I have a simple login screen which, upon user clicking login button, should run the sql query to search for rows where the username == username text box, and password == password text box. This ...
0
votes
3answers
82 views

Java - Comparing strings

I am trying to check from a buffered reader if a string value matches user input in browser. If user enters localhost:9999/getMusic data is output fine, however I am trying to make sure that only ...
1
vote
3answers
95 views

Comparing mixed dict elements against int, strings and floats

I would like to be able to make comparisons in a mixed-type dictionary (containing int, floats, strings, numpy.arrays). My minimal example has a list of dictionaries and I would like a function (or ...
0
votes
2answers
36 views

How to check if a string contains any string of a column in MySQL and vice versa?

By vice versa, I mean, check if any of the strings in a column contains the string. Example: String a = "Peperoni" MySQL column: { "PPeperoni_123", "roni", "hello world" } It should ...
1
vote
2answers
39 views

Weird Issue With argv in if statement

I'm having problems with argv in an if statement in one of my C programs. I know I must be missing something simple and stupid (it's been a while since I've done anything in C). Problem is, it won't ...
0
votes
0answers
46 views

Compare lowercase strings in python [closed]

What I want to do is compare the content in lines of two different files: old.data new.data. ./compare.py old.data new.data And if its found a line where the text is not the same the code should ...
1
vote
6answers
91 views

PHP: Compare the start of two strings

I am wondering if there is a simple way to, in PHP, compare two strings and returns the amount of characters they have in common from the start of the string. An example: $s1 = "helloworld"; $s1 = ...
0
votes
5answers
84 views

string,char comparison in c++

*Hello! I'm making program where user enters a sentence and program prints out how many letters there are in a sentence(Capital and non-capital). I made a program but it prints out weird ...
1
vote
1answer
86 views

Python String Comparisons Using A Word List

Eventually I will be able to post simple questions like this in a chat room, but for now I must post it. I am still struggling with comparison issues in Python. I have a list containing strings that ...
0
votes
3answers
89 views

How would I compare these types of strings?

I have a script that allows a user to submit a search query, usually in the form of a Site Name or using a device's MAC Address. I want to keep the search as simple as possible, so only want the one ...
0
votes
1answer
20 views

does Xtemplate statements allow to match strings?

I've this question, I need to know if it is possible to have a string comparison operation on a parameter inside the XTemplate. My need is to know if there is a substring inside a string. That's my ...
3
votes
1answer
111 views

Why does OrdinalIgnoreCase and InvariantCultureIgnoreCase return different results?

I thought StringComparison.OrdinalIgnoreCase and StringComparison.InvariantCultureIgnoreCase do the same job when it comes to English-only strings. However it's not the case in the following code that ...
0
votes
3answers
141 views

Replace a statement in java file using shell script

I need to replace a variable assignment statement using shell script. Eg: MyConstants.java file contains lines like String abcd = "ABCD"; String abc = "ABC"; String e = abcd + "e"; I need to ...
4
votes
2answers
53 views

Distinguishing between Japanese number formats

In .NET, I need (if possible) to distinguish between different types of Japanese number strings. In Japanese number strings can be written in different ways, e.g for "1" there is "1", "ⅰ", "Ⅰ", "①" ...
0
votes
1answer
85 views

compare and highlight difference of two strings containing html in php

I'm trying to compare two string in PHP which both contain HTML. (they are both placed into a database via a wysiwyg editor). The result I want to get is to see which words are removed and which ...
2
votes
3answers
69 views

Wrong comparison of string and char*

My program gets an input from a port and then I send this string to be check against a few strings. I first tried to compare, java style, only using "myString" but I got a 13 (thirteen) when ...
5
votes
1answer
240 views

What are some algorithms for comparing how similar two strings are?

I need to compare strings in C++ to decide whether they represent the same thing. This relates to case titles entered by humans where abbreviations and other small details may differ. For example, ...
2
votes
5answers
237 views

C# How can I compare two word strings and indicate which parts are different

For example if I have... string a = "personil"; string b = "personal"; I would like to get... string c = "person[i]l"; However it is not necessarily a single character. I could be like this ...
0
votes
0answers
49 views

compute similarity measure between 2 strings [duplicate]

I have two strings that I have splited them to words and for each pair of words in two strings. I have the similarity between them. How to compute the final similarity between two strings?
5
votes
1answer
67 views

PostgreSQL String Comparison

I would like to do a query to get all items with a string 'id' > a specified id. The query select * from machine_thread where id > 'znRb1c_3TPytk-JoPX19Qw' returns an item with the id ...
0
votes
6answers
92 views

How do I compare a character to all the characters in some string in Python?

I need to write a fuction that takes a character and a string as inputs, and then compares that character to each element in the string. It then prints an d finally returns the number of times that ...
0
votes
1answer
114 views

Intermittent “out of range” exception on string comparison

Environment: C#, VS2012, SharePoint 2010 I'm using a console application to interface with a SharePoint site and I'm trying to do a simple string comparison against a collection of alert titles... ...
-1
votes
4answers
102 views

Python - function to do string comparison

def name(x): return x==('Jenson'or'Amra'or'McCay'or'Spinner'or'Jones') print(name('Jenson')) print(name('McCay')) This is the question: "Write a function that takes as input a name of a ...
1
vote
2answers
60 views

How to resolve two slightly different names of same product (mobile phone) in program?

I am working on a web app where I collect data about mobile phones from several websites. The problem is that websites use slightly different naming of mobile phones. For eg the websites use the ...
2
votes
1answer
103 views

Complex “Contains” string comparison

I'm developing a C# 4.5 app and I need a function to return true for the following comparison: "bla LéOnAr d/o bla".ComplexContains("leonardo") In other words, I need string.Compare(str1, str2, ...
3
votes
5answers
91 views

Is string comparison faster than string length? [duplicate]

I am unsure of which of these ways is faster to use multiple times, testing with a lot of string variables. Which of these is faster to use for checking if the string is just whitespace? if ...
2
votes
5answers
165 views

How to compare if a char or string variable equals a certain string?

I'm trying to get this while loop to work but for some reason, it will automatically "assume" that the user input is wrong. value is a string (should it be a char?) A,B,C are strings (should they be ...

1 2 3 4 5 9