3
votes
7answers
325 views
string1 >= string2 not implemented in Linq to SQL, any workarround?
Hi, anyones knows how to do this?
Edit: I am trying to do >=. I correct the Title.
1
vote
3answers
37 views
percentage-based string comparison in php
Hi,
I'm looking for a library in PHP that will allow me to compare two strings, and determine if they similar.
For example:
apple apple 100%
apple aple 80%
and so forth.
any id …
0
votes
7answers
140 views
Sort Map<String, Object> by keys with IgnoreCase?
Well, I tested TreeMap but it doesn't take in account IgnoreCase on string comparision. I need to order lexicographically and ignoring case. Is there any other way?
Thanks, that w …
0
votes
1answer
96 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:
…
0
votes
3answers
59 views
partial string comparision in php
i have stored two ip address values in two strings
a = '116.95.123.111'
b = '116.95.122.112'
i just want to compare the first two parts of ip address i.e 116.95 part in the two …
6
votes
6answers
130 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 …
1
vote
1answer
55 views
msbuild string upper case comparison
Hi,
i have the following code in my build-file:
<Error Text="Some Text" condition="'$(StringName)' != 'Test'/>
It causes an error if the condition is not match. When $(St …
0
votes
3answers
215 views
NSString isEqualToString: for \n
I have an Cocoa app that calls a web service. When I parse the response from the web service I am getting a \n as the last character in my foundCharacters delegate for the NSXMLPa …
0
votes
1answer
188 views
Identical string return FALSE with ‘==’ in Python, why?
The data string is receive through a socket connexion. When receiving the first example where action variable would = 'IDENTIFY', it works. But when receiving the second example w …
2
votes
3answers
115 views
Sorting names with numbers correctly
For sorting item names, I want to support numbers correctly. i.e. this:
1 Hamlet
2 Ophelia
...
10 Laertes
instead of
1 Hamlet
10 Laertes
2 Ophelia
...
Does anyone know of a …
1
vote
3answers
96 views
Mercurial performing binary comparison for certain file types
I've recently started using Mercurial and when I reverted one of my .SQL files, Mercurial performed a binary comparison. This obviously limits the visibility of the changes that we …
1
vote
7answers
2k views
c# performance: type comparison vs. string comparison
Which is faster? This:
bool isEqual = (MyObject1 is MyObject2)
Or this:
bool isEqual = ("blah" == "blah1")
It would be helpful to figure out which one is faster. Obviously, i …
4
votes
7answers
102 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 compa …
3
votes
5answers
1k 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 neve …
0
votes
1answer
73 views
Should one use strict comparison in Strings?
I know that for instance, using:
if (in_array('...'), array('.', '..', '...') === true)
Over:
if (in_array('...'), array('.', '..', '...') == true)
Can increase performance a …
