string-comparison is the action of comparing strings, resulting in a boolean or an integer indicating the "distance" between the strings.
In C there is a switch construct which enables one to execute different conditional branches of code based on an …
c string switch-statement string-comparisonIn PowerShell I have an array of string objects, and I have an object that contains string objects. In Java …
powershell string-comparisonWhat does "compare two strings lexicographically" mean?
java string-comparison lexicographic lexicographic-orderingI am trying to compare strings in bash. I already found an answer on how to do it on stackoverflow. …
bash shell ubuntu-11.04 string-comparisonI need a way to compare multiple strings to a test string and return the string that closely resembles it: …
algorithm language-agnostic string-comparison levenshtein-distanceI'm trying to compare a character array against a string like so: const char *var1 = " "; var1 = getenv("myEnvVar"); if(var1 == "…
c++ string string-comparisonWhen comparing two strings in c# for equality, what is the difference between InvariantCulture and Ordinal comparison?
c# .net string-comparison ordinalIn SQL we have NOT LIKE %string% I need to do this in PHP. if ($string NOT LIKE %word%) { do …
php string-comparisonI am walking a directory that contains eggs to add those eggs to the sys.path. If there are two …
python version string-comparisonI want to compare several strings to each other, and find the ones that are the most similar. I was …
java string-comparison