Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
1k views

Why does string.Compare seem to handle accented characters inconsistently?

If I execute the following statement: string.Compare("mun", "mün", true, CultureInfo.InvariantCulture) The result is '-1', indicating that 'mun' has a lower numeric value than 'mün'. However, if I ...
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: ...
3
votes
2answers
133 views

string.Compare behavior

How this can be ? (This is taken from the immediate window in VS2008) ?string.Compare("-", "+") -1 ?string.Compare("-0", "+0") 1
3
votes
4answers
3k views

bash, dash and string comparison

While writing a fairly simple shell script, I've tried to compare two strings. I was using /bin/sh instead of /bin/bash, and after countless hours of debugging, it turns out dash (which is actually ...
2
votes
1answer
125 views

String format compare in objective c

hello all i have one NSString in this format +1-123-123-1234 (phone number US base style) , my question is How can we compare that my string is formted in +1-123-123-1234 format . on the basic of ...
2
votes
3answers
97 views

Comparing strings in python to find errors

I have a string that is the correct spelling of a word: FOO I would allow someine to mistype the word in such ways: FO, F00, F0O ,FO0 Is there a nice way to check for this ? Lower case should ...
1
vote
3answers
152 views

String Comparision without Special Character

I have strings having special characters e.g. "ravi", "Ravi" ,"!ravi","ravi...","RaVi)" etc.. I want all these to be treated as same. How to achieve this. Can be in shell script, C,C++,JAVA. ...
1
vote
1answer
516 views

MIPS - compare input string to one stored in memory

Hey everyone, I have a functioning string compare method written in MIPS (bit by bit comparison of two strings from an input by the user), but I'm trying to update it to compare the second input with ...
1
vote
6answers
299 views

How does .NET compiler compare two strings?

string a="I am comparing 2 string"; string b="I am comparing 2 string"; if(a==b) return true; else return false; How does a .NET compiler compare two strings? Does a string work like a ...
0
votes
3answers
31 views

Bash compare output rather than command

Trying to create a script to read a remote file and check the md5 checksum and alert if a mismatch yet getting an error I can't understand. #!/bin/sh REMOTEMD5=$(ssh user@host 'md5sum file.txt') ...