string-comparison is the action of comparing strings, resulting in a boolean or an integer indicating the "distance" between the strings.
4
votes
3answers
36 views
Python: Match two elements in a tuple, return the 3rd
I have a set of input conditions that I need to compare and produce a 3rd value based on the two inputs. a list of 3 element tuples seems like a reasonable choice for this. Where I could use some help ...
1
vote
1answer
35 views
Excel - VBA : Match with two combined cells?
my question is quite tricky so I'll try to make it as clear as possible.
In my program, I compare cells value with a database in order to find matches.
The cells I am comparing are under a column ...
2
votes
1answer
123 views
How to read value of ParamStr with different deliminators?
When you read ParamStr(), it's deliminated by spaces between each parameter. However, I've seen many command-line arguments which accept a space between the parameter name and its paired value, while ...
-2
votes
5answers
124 views
Elegant way to check whether two Strings are different
Is there an elegant way to compare two Strings and check whether they are different? For example in Java, I usually use something similar to this:
if (text1 != text2 || (text1 != null && ...
0
votes
1answer
20 views
Checking if command response does not contain str
I have a script which works great... but I'd like it not do anything if there is no one online. I looked over all the documentation on how to check if a str is not within a variable, but it always ...
5
votes
1answer
33 views
Matlab Differ between — and - when changing LineStyle
I've a program where I want to be able to change the linestyle by an input but I'm having some trouble changing from - to -- and from -- to -. it gives the 'The choosen style is already used' message, ...
0
votes
1answer
20 views
PHP - fputcsv when filename NOT in_array
I have previously iterated thru a filesystem and uploaded a large number of files whose filename's matched a string and all the matched strings are in an array.
I am now trying to iterate thru that ...
4
votes
1answer
150 views
What is the difference between Delphi string comparsion functions?
There's a bunch of ways you can compare strings in modern Delphi (say 2010-XE3):
'<=' operator which resolves to UStrCmp / LStrCmp
CompareStr
AnsiCompareStr
Can someone give (or point to) a ...
6
votes
4answers
71 views
Why PHP casts two numerical strings to numbers before [loosely] comparing them?
I browsed through several similar questions, but they all only state the fact:
If ... comparison involves numerical strings, then each string is converted to a number and the comparison performed ...
0
votes
2answers
24 views
PHP Fails with loose string comparison?
This is my first post, I hope I'm doing everything OK asking my question:
I want to create a function which detects whether a string is valid JSON or not. I already read good topic here (Fastest way ...
0
votes
3answers
76 views
Why is this compare failing
I have the following function with parameters
aFile = a full filename
aFolder = a foldername to copy/move to
aGuid = the guid that the document is assigned
aAction = what to do with the fil (move ...
-2
votes
2answers
67 views
vbs or bat to search file in a specified directory and open file based off of extension, then find and replace string
We have a program that installs a config document in %appdata%\Roaming\.
I need a script that I can push out via GPO that will do the following:
Search a specified directory by file extension
Search ...
0
votes
1answer
42 views
How can i extend jquery quicksearch so it can search words with accents?
Yo guys im currently developing this site and im using jquery isotope, wordpress and jquery quicksearch it works perfectly but i want to extend its functionality. If i type "Mexico" i want quicksearch ...
13
votes
3answers
361 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
64 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
75 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
26 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
37 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
25 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
40 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
49 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
58 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
114 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 ...
1
vote
2answers
63 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
...
0
votes
1answer
50 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
43 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
52 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
60 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
76 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
82 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
121 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
156 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
191 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
272 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
113 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
327 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
84 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
109 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
41 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
40 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
47 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
116 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
114 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
113 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
96 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
29 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 ...
4
votes
1answer
169 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
155 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
56 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
123 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 ...





